* {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

body {
  background: #09102a;
  line-height: 1.5;
}

#main {
  min-height: 280px;
  min-width: 320px;
  position: absolute;
  width: 100%;
  height: 100%;
}

#content {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -150px 0 0 -425px;
  width: 850px;
  height: 200px;
  color: #6a9db4;
  font-size: 230%;
  text-align: center;
  animation: appear .4s ease-in-out 1 forwards;
  -webkit-animation: appear .4s ease-in-out 1 forwards;
  -moz-animation: appear .4s ease-in-out 1 forwards;
}

#current-ip-address {
  font-weight: 900;
}

#current-ip-address, #ipv4-ip-address, #ipv6-ip-address {
  text-transform: uppercase;
  color: #aae1f4;
  word-break: break-all;
  word-wrap: break-word;
}

#ip-ipv4, #ip-ipv6 {
  display: none;
  font-size: 70%;
}

@media only screen and (min-width: 641px) and (max-width: 850px) {
  #content {
    width: 640px;
    height: 160px;
    margin: -80px 0 0 -320px;
    font-size: 180%;
  }
}
@media only screen and (min-width: 480px) and (max-width: 640px) {
  #content {
    width: 480px;
    height: 140px;
    margin: -50px 0 0 -250px;
    font-size: 120%;
  }
}
@media only screen and (max-width: 480px) {
  #content {
    width: 320px;
    height: 110px;
    margin: -40px 0 0 -160px;
    font-size: 90%;
  }
}
@-webkit-keyframes appear {
  from {
    -webkit-transform: translateY(-10px);
    opacity: 0;
  }
  to {
    padding-top: 0;
    opacity: 1;
  }
}
@-moz-keyframes appear {
  from {
    -moz-transform: translateY(-10px);
    opacity: 0;
  }
  to {
    padding-top: 0;
    opacity: 1;
  }
}
@keyframes appear {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }
  to {
    padding-top: 0;
    opacity: 1;
  }
}
