@font-face {
  src: url(Fonts/AvenirNextRoundedStd-Demi.ttf);
  font-family: "Arial Rounded";
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
body {
  font-family: "Arial Rounded", "Arial Narrow Bold", sans-serif;
  background-image: url(IMGS/BackgroundImage.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: rgb(255, 255, 255);
  min-height: 100vh;
  background-attachment: fixed;
  background-color: black;
}
h1 {
  font-size: 80px;
  text-align: center;
  margin: 20px 0 10px;
  user-select: none;
}
main {
  margin: auto;
  padding: 20px;
  overflow: auto;
}
.index-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 180px;
  margin: 0 auto;
  width: fit-content;
  text-align: center;
  user-select: none;
}
.pill {
  background-color: black;
  padding: 15px 30px;
  border-radius: 180px;
  width: fit-content;
}
.links {
  margin: 3px;
}
.index-nav span {
  margin: 0 3px;
  border: 3px solid white;
  border-radius: 180px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  text-wrap: nowrap;
}
.index-nav a {
  color: white;
  text-decoration: none;
  cursor: pointer;
  padding: 0;
  display: block;
  overflow: hidden;
}
.index-nav span:hover {
  color: hsl(307, 100%, 77%);
  cursor: pointer;
  font-weight: bold;
}
footer {
  text-align: center;
  font-size: larger;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
footer div {
  border: 3px solid white;
  background-color: black;
  border-radius: 180px;
  overflow: hidden;
  display: inline-block;
  padding: 3px;
  white-space: nowrap;
}
footer a {
  text-decoration: none;
  cursor: pointer;
  color: white;
  padding: 3px;
}
footer span {
  margin: 5px;
}
footer i:hover {
  color: hsl(307, 100%, 77%);
  cursor: pointer;
}
#skibidiDev {
  display: none;
  border: 3px black solid;
  background-color: black;
  overflow: hidden;
  border-radius: 50px;
  padding: 8px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
  transition-delay: 3s;
  position: fixed;
  bottom: 0;
}
#skibidiDev:hover {
  opacity: 1;
}
@media (max-width: 510px) {
  h1 {
    font-size: 50px;
  }
  .pill {
    padding: 8px 16px;
  }
  footer {
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
  }
}
