* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: sans-serif;
}


@media screen and (max-height: 600px) {
  body {
    font-size: 75%;
  }
}

@media screen and (max-width: 400px) {
  body {
    font-size: 50%;
  }
}

@media screen and (max-height: 400px) {
  body {
    font-size: 40%;
  }
}

body {
  overflow: hidden;
}

#header {
  margin-left: 100px;
  margin-top: 28px;
}

#menu {
  border-radius: 80px;
  width: 100%;
  height: 75%;
  position: absolute;
  top: 80px;
  left: 0;
  background: #1a1a1a;
  z-index: 0;
}

#menu-text-block {
  width: 50%;
  margin-left: 5%;
}

/* When the screen shrinks, we eliminate the logo box to the right and it's mostly text */
@media screen and (max-width: 900px) {
  #menu-text-block {
    width: 90%;
  }
}

#blue-stripe {
  border-radius: 80px;
  width: 100%;
  height: 75%;
  position: absolute;
  top: 120px;
  left: 0;
  background: #c5eaff;
  z-index: -1;
}

#logo-area {
  border-radius: 80px;
  width: 40%;
  margin-left: 60%;
  height: 75%;
  position: absolute;
  top: 80px;
  left: 0;
  background: #f1eeee;
}

.menu-link {
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 0;
  margin-top: 25px;
}

.menu-description {
  color: #999999;
  margin-top: 5px;
}

@media screen and (max-height: 400px) {
  .menu-link {
    margin-top: 20px;
  }
}

@media screen and (max-width: 340px) {
  .menu-link {
    margin-top: 5px;
  }
}

@media screen and (max-width: 900px) {
  #logo-area {
    display: none;
  }
}

#logo {
  margin-left: 75px;
  max-width: 578px;
  max-height: 136px;
}

@media screen and (max-width: 1300px) {
  #logo {
    margin-left: 35px;
    transform: scale(.7) translateY(-60%) translateX(-20%);
    -ms-transform: scale(.7) translateY(-60%) translateX(-20%);
  }
}

#footer-box {
  width: 100%;
  height: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  background: #1a1a1a;
  z-index: -2;
}

.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.url {
  text-decoration: none;
  color: white;
}

#footer-text {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  color: white;
  text-align: center;
}
