*::selection {
  color: aliceblue;
  background-color: black;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background-color: #bbbbbb;
  color: black;
}
a:active {
  color: #bbbbbb;
}

button:hover {
  cursor: pointer;
}
a {
  text-decoration: none;
}
a:link {
  color: white;
}
a:visited {
  color: white;
}
#nav h1 {
  font-size: clamp(2em, 4vw, 9em);
  font-family: "Dancing Script", sans-serif;
  animation: anim 0.7s ease-in-out forwards;
  display: inline-block;
  color: black;
}
@keyframes anim {
  0% {
    transform: translateX(-50%) scale(0.5);
    opacity: 0;
  }
  100% {
    transform: translateX(60%) scale(1);
    opacity: 1;
  }
}
#ln {
  animation: ln 0.7s ease-in-out forwards;
  background-color: black;
  overflow: visible;
  height: 3vh;
  width: 100%;
  margin-bottom: 10%;
}
@keyframes ln {
  0% {
    transform: translateX(-50%) scale(0.5);
    opacity: 0;
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}
#nav-details {
  margin-left: 6vw;
  background-color: black;
  color: white;
  width: 10em;
}

#nav-links button {
  background-color: black;
  color: white;
  border: none;
  padding: 0.5em;
  width: 100%;
  text-align: left;
  font-size: 1.2em;
  height: 100%;
}

#nav-links button:hover {
  background-color: #bbbbbb;
  color: black;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  letter-spacing: 3px;
}
details button * {
  color: inherit;
}
#nav-links a:hover {
  color: black;
}
details summary {
  letter-spacing: 1px;
  height: 3vh;
  list-style: none;
  cursor: pointer;
  padding-left: 8px;
  font-size: 2vh;
}
details summary:hover {
  letter-spacing: 3px;
  color: black;
  font-weight: bold;
  background-color: #bbbbbb;
  transition: all 0.3s ease-in-out;
}
details summary::-webkit-details-marker {
  display: none;
}
#ft {
  animation: ft 1s ease-in-out forwards;
  background-color: black;
  color: white;
  height: 70px;
  margin-bottom: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-top: 10%;
}
@keyframes ft {
  0% {
    transform: translateY(100%) scale(0);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
#ft p {
  margin: 0;
}
#developer {
  height: min-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#ft a {
  color: aliceblue;
  text-decoration: none;
  font-weight: bold;
}
#ft a:hover {
  color: #bbbbbb;
  letter-spacing: 3px;
  transition: all 0.3s ease-in-out;
}
#ft h5 {
  margin: 0;
  background-color: #bbbbbb;
  color: black;
}

#foothead {
  display: flex;
  flex-wrap: nowrap;
  height: 1em;
  margin-top: 2px;
}
@media screen and (max-width: 1000px) {
  #nav-details {
    width: 100%;
    margin-left: 0;
  }
  details button {
    height: min-content;
    margin: auto;
  }
  details summary {
    height: max-content;
    padding: 0.6%;
  }
  details form {
    width: 50%;
    font-size: small;
  }
  #nav-links {
    display: flex;
    overflow: hidden;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-left: 0;
    height: min-content;
  }

  #ft {
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-size: small;
  }
  h1 {
    font-size: clamp(2rem, 2vw, 5rem);
  }
}
