html {
  background-image: url("https://cronousrevival.com/images/cronousrevival.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-color: black;
}

 body {
    color: white;
    margin-left: calc(100vw - 100%);
    margin-right: 0;
}

.underline-on-hover:hover {
  text-decoration: underline;
}
  
  #nav {
    width: 930px;
    height: 80px;
    padding: 0px;
    margin-left: auto;
    margin-right: auto;
  }
  
  #nav-logo {
    float: left;
    margin-left: 0px;
    width: 165px;
    height: 80px;
    border: 2px solid rgba(0,0,0,0.1);
    background-color: rgba(0,0,0,0.8);
    border-radius: 10px;
    padding: 5px;
  }
  
  #nav-menu {
    float: right;
    width: 650px;
    height: 45px;
    background-color: rgba(0,0,0,0.8);
    margin-top: 20px;
    transform: skew(-20deg);
    font-family: Impact, fantasy;
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
  }
  
  #servertime {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    width: 300px;
    text-decoration: none;
    font-size: 18px;
    background-color: rgba(0,0,0,0.6);
    text-align: center;
  }
  #main {
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    width: 930px;
    height: 500px;
    
    background-color: rgba(0,0,0,0.8);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  #content {
    margin-left: 20px;
    margin-top: 20px;
  }

/* Style the links inside the navigation bar */
#nav-menu a {
  margin-top: 0px;
  margin-bottom: 0px;
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 18px;
  text-shadow: 0px 1px 1px rgb(0, 0, 0);
}

/* Change the color of links on hover */
#nav-menu a:hover {
  background-color: #62A3C9;
  color: black;
  text-shadow: 0px 1px 1px white;
}

/* Add a color to the active/current link */
#nav-menu a.active {
  background-color: #73c0ed;
  color: rgb(0, 0, 0);
  text-shadow: 0px 1px 1px white;
}

#nav-right {
  float: right;
}

#nav-user {
  margin-top: 0px;
  margin-bottom: 0px;
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 18px;
  text-shadow: 0px 1px 1px rgb(0, 0, 0);
  background-color: #4a4a4a;
}

#nav-right a {
  float: right;
  background-color: #5c2a8b;
  color: white;
  text-shadow: 0px 2px 3px black;
  padding: 14px 16px;
}

#nav-right a:hover {
  background-color: #9d5cda;
  color: black;
  text-shadow: 0px 1px 1px white;
}

/* unvisited link */
a:link {
  color: white;
}

/* visited link */
a:visited {
  color: white;
}

/* mouse over link */
a:hover {
  color: rgb(156, 156, 156);
}

/* selected link */
a:active {
  color: white;
}