@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');

body {
    background-color: black;
    /** Alternate Background image:
    background-image: radial-gradient(circle at bottom left, #7289da4d, transparent 46%),
                      radial-gradient(circle at top right, #7289da49, transparent 60%);
    **/
    background-image: linear-gradient(to bottom, #7289da4d, black);
    color: white;
    text-align: center;
    justify-content: center;
    min-height: 100vh;
    background-size: 100%;
    
}

.serverinfo {
  padding-left: 10%;
  display: flex;
  justify-content: space-evenly;
  padding-top: 10vh;
}

h1 {
  font-size: 3rem;
  text-shadow: 0px 0px 30px #7289DA;
  color: #7289DA;
  margin: 0;
  opacity: 0;
  animation: fadein 2s forwards;
  animation-delay: .2s;
}

p a {
    text-decoration: none;
    color: inherit;
}

.ip {
  padding-top: 16vh;
  opacity: 0;
  animation: fadein 2s forwards;
  animation-delay: .6s;
}

.lowerbody {
  margin-left: 22vw;
  margin-right: 22vw;
  font-size: 1.2rem;
  opacity: 0;
  animation: fadein 2s forwards;
  animation-delay: 1s;
}

.button {
    margin-top: 5%;
    opacity: 0;
    background-color: #7289DA;
    border: 8px solid white;
    border-radius: 30px;
    animation: 2s forwards;
    padding: 15px;
    font-size: 125%;
    color: white;
    font-weight: 900;
    transition: all .5s ease;
    animation: fadein 2s forwards;
    animation-delay: 1.32s;
    text-decoration: none;
    display: inline-block;
}

@keyframes fadein {
    from {opacity: 0;}
    to {opacity: 1;}
}

a.button:hover {
    box-shadow: 0px 0px 20px #7289DA;
    text-shadow: 0 0 5px black;
    transform: scale(1.1);
}

        @media (max-width: 1260px) {

h1 {
  font-size: 2.25rem;
}

.ip {
  padding-top: 1vh;
}

}

        @media (max-width: 1030px) {

h1 {
  font-size: 2rem;
  align-items: center;
}

.ip {
  font-size: 1rem;
  align-items: center;
  padding-top: 1rem;
}

.serverinfo {
  padding: 0 2vw;;
  top: 4.5vh;
  position: relative;
  text-align: center;
  align-items:baseline;
  display: inline;
}

.lowerbody {
  margin: 0 10vw ;
  opacity: 0;
  animation: fadein 2s forwards;
  animation-delay: .5s;
}

} 

        @media (max-height: 500px) {

h1 {
  font-size: 4.5rem;
}

.ip {
  font-size: 1.5rem;
}

.serverinfo {
  position: relative;
  align-items:baseline;
} 

}