@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
  font-family: Sansation;
  src: url(fonts/Sansation.ttf);
  }
  @font-face {
    font-family: Sansation;
    src: url(fonts/Sansation.ttf);
  }

  body {
    margin: 0;
    font-family: 'Sansation', 'PT Sans', 'Roboto';
    background-color: #0a0a0d;
    color: #eee;
    background-image: radial-gradient(circle at top right, #daa13721, transparent 60%),
                      radial-gradient(circle at bottom left, #daa1372c, transparent 60%);
    min-height: 100vh;
    font-size: 110%;
  }

.titlebox {
  padding: 60px;
  opacity: 0;
  animation: fadein 2s forwards;
}

h1 {
  font-size: 250%;
  align-self: center;
  justify-content: center;
  color: #DAA037;
  margin: 0;
  line-height: 0;
  opacity: 0;
  animation: fadein 2s forwards;
  animation-delay: .5s;
}

.ip {
  line-height: 0;
  opacity: 0;
  animation: fadein 2s forwards;
  animation-delay: 1s;
}

.serverinfo {
  padding: 0 20%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding-top: 2rem;
  z-index: 15;
  top: 1.7rem;
  background-color: #000000;
  position: sticky;
  max-height: 14vh;
  opacity: 0;
  animation: fadein 2s forwards;
}

.lowerbody {
  margin-left: 22vw;
  margin-right: 22vw;
  opacity: 0;
  animation: fadein 2s forwards;
  animation-delay: 1.5s;
}

.intro {
  padding-top: 10vh;
}

button {
  font-size: large;
  background: black;
  color: white;
  border: 5px dashed gold;
}

button:hover {
  color: rgb(255, 210, 60);
  border: 5px solid gold;
  transition: all .2s ease;
}

button:active {
  color: black;
  border-color: black;
}

li {
  font-size: 85%;
  padding: 4px;
  opacity: 0;
  animation: fadein 2s forwards;
  animation-delay: 1.7s;
}

.flexboxcontainer {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  }

.infobox {
  opacity: 0;
  animation: fadein 2s forwards;
  animation-delay: 1.6s;
  }


  @keyframes fadein {
    from {opacity: 0;}
    to {opacity: 1;}
  }