/* Basic Standard theme set */
* {
  color: #dadada;
  font-family: "Montserrat", "JetBrains Mono", sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
}

h1 {
  color: #FFFFFF;
}

body {
  background-color: #202020;
}

p {
  padding: 10px;
}

a {
  transition: color 0.3s ease;
  text-decoration: none;
  position: relative;
  text-wrap: nowrap;
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(.4, 0, .2, 1), background-color 0.3s ease;
  pointer-events: none;
  background-color: #9B00FF;
}

a:hover::after {
  transform: scaleX(1);
  background-color: #84ed03;
}


/* Header Format */
header {
  position: fixed;
  object-position: top center;
  background-color: #000000;
  margin: 0;
  padding: 0;
  z-index: 10;
  width: 100%;
  object-fit: cover;
  height: 10%;
  display: flex;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0px;
  flex-direction: row;
}
.logo {
  font-family: "Cal Sans", sans-serif;
  font-family: "JetBrains Mono", monospace;
  max-width: 90%;
  font-size: auto;
  text-wrap: nowrap;
}
.logo.one {
  font-size: 2.5rem;
}

.menu-button {
  background: none;
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  rotate: 0deg;
  transition: rotate 0.6s ease;
}

.menu-button:hover {
  rotate: 180deg;
}

/* Navagation */
.NavContainer {
  background-color: #711aaa;
  height: 100vh;
  width: 70%;
  position: fixed;
  top: 0;
  right: 30%;
  z-index: 20;
  translate: -100%;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  transition: translate 0.6s ease;
}

.menuOpen {
  translate: 0;
}

.NavContainer nav ul {
  list-style: none;
  width: 60%;
  margin: 20px;
  font-size: 22px;
}

.NavContainer nav ul li b {
  padding: 0px, 10px;
  color: #FFFFFF;
  font-weight: 400;
  transition: background-color 0.3s ease, font-weight 0.3s ease;
}

.NavContainer nav ul li b:hover {
  color: #84ed03;
  font-weight: 600;
}

.close-button {
  background: none;
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  z-index: 21;
  color: #FFFFFF;
}

.close-button img {
  background: none;
  z-index: 22;
  rotate: 0deg;
  transition: rotate 0.6s ease;
}

.close-button img:hover {
  rotate: 180deg;
}

/* Footer */
.footer {
  background-color: #9B00FF;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 150px;
  /* adjust as needed */
}

.footer p {
  color: #ffffff;
  font-family: "JetBrains Mono", monospace;
  text-align: center;
}

.quick-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 10px;
}

.footer a {
  padding: 0px 10px;
  color: #FFFFFF;
  font-weight: 400;
  transition: color 0.3s ease;
  text-decoration: none;
  position: relative;
}

.footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(.4, 0, .2, 1), background-color 0.3s ease;
  pointer-events: none;
  background-color: #9B00FF;
}

.footer a:hover::after {
  transform: scaleX(1);
  background-color: #84ed03;
}

.quick-links p {
  display: block;
}

@media(orientation: portrait) {
  .NavContainer {
    width: 100%;
  }

  .quick-links {
    flex-direction: column;
    gap: 0px;
  }

  .quick-links p {
    display: none;
  }
}

/* .nothing{
  color: #9B00FF;
  color: #8FFE09;
} */



/* Font Infomation */

/* .cal-sans-regular {
  font-family: "Cal Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.jetbrains-mono {
  font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
} */