/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@keyframes drop-in-smooth {
  from {bottom:100px; opacity:0;}
  to {bottom:0px; opacity:1;}
}

.logo {
  padding-left: 1vw;
  max-height: 100%;
}

.header-text {
  display: inline-block;
  
  position: relative;
  left: 2vw;
  bottom: 16px;

  font-size: 4em;
}

.nav-list {
  margin: 0;
  padding: 0;
  
  overflow: hidden;
  list-style-type: none;
  
  height: 100%;
}

.nav-list li {
  float: left;
  max-width: 125px;
  max-height: 100%;
}

.nav-list li a {
  display: block;
  
  padding: 5px 15px; 
  border-right: 5px solid #A3A6CD;
  
  text-align: center;
  text-decoration: none;
  
  font-size: 100%;
  color: #4A5E7E;
  
  background-color: #9397CF;
  
  transition: background-color 0.2s;
}

.nav-list li a:hover {
  background-color: #D49B74;
}

#secret {
  float: right;
  width: 10%;
  
  padding-right: 0px;
  
  background-color: transparent;
}

#secret a {
  display: block;
  
  text-align: center;
  text-decoration: none;
  
  border-right: 0px solid transparent;
  
  color: #CC7F60;
  opacity: 0;
  
  background-color: #D49B74;
}

#secret a:hover {
  opacity: 1;
}

.wake-up {
  position: relative;
  display: flex;
  
  flex-direction: column;
  
  margin: 0px auto 0px 10px;
   
  width: 55%; 
  max-width: 600px;

  background-color: #A3A6CD;
  
  border: 7px solid #9397CF;
  border-radius: 24px;
  
  animation-name: drop-in-smooth;
  animation-duration: 0.4s;
  animation-timing-function: ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: backwards;
}

.external-links {
  position: relative;
  display: flex;
  
  flex-direction: column;
  
  margin: 0px 10px 0px auto;
  
  width: 35%;
  max-width: 400px;
  
  background-color: #D49B74;
  
  border: 7px solid #CC7F60;
  border-radius: 24px;
  
  animation-name: drop-in-smooth;
  animation-duration: 0.4s;
  animation-timing-function: ease-out;
}

.external-links a {
  margin:10px auto 0px;
}

.external-links a img {
  max-width:100%;
}

.content-organizer {
  display: flex;
  
  align-items: flex-start;
  margin: 4vw auto;
  width: 80%;
}

header {
  width: 100%;
  height: 100px;
  
  padding: 10px 0px;
  
  background-color: #A3A6CD;
  background-image: url("bg/site_header.png");
  background-position: center;
}

nav {
  width: 100%;
  
  margin: 0px;
  padding: 0px;
  
  background-color: #D49B74;
}

body {
  margin: 0px;
  background-color: #48425C;
  background-image: url("bg/tiling_bg_1_small.png");
  color: #304872;
  font-family: "Noto Sans", verdana, arial;
}

h1 {
  font-family: "Spectral", georgia, arial;
  
  font-size: 2.5em;
}

h2 {
  font-family: "Spectral", georgia, arial;
  
  font-size: 2em;
}

h3 {
  font-family: "Spectral", georgia, arial;
  
  font-size: 1.5em;
}

hr {
   width:20%;
}

p {
  padding: 7px 32px;
  text-align: justify;
  text-align-last: center;

  font-size: 1em;
}