html {
  background: #fdf2e0;
  font-size: 16px;
  margin: 0;
  padding: 0;
  padding-bottom: 4vh;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1500px;
  margin-top: 5vh;
  font-family: Georgia, "Times New Roman", serif;
  display: flex;
}

/*==============================
  NAVIGATION BAR
  ==============================*/
.space-left {
  width: 20%;
  flex-direction: column;
}

.nav-container {
  float: right;
  margin: 0 20% 0 2vw;
}

.nav-logo {
  /* Scalable with min size of 22px. Used to be 26px. */
  font-size: calc(1.375rem + 0.2vw);
  margin-bottom: 5vh;
  opacity: .5;
}

ul {
  padding: 0;
  margin: 0;
}

.website-link {
  text-decoration: none;
  color: black;
}

/*==============================
MOBILE/BURGER CSS
===============================*/
.mobile-header {
  display: none;
}

/*==============================
  MAIN CONTENT
==============================*/
.main-container {
  width: 60%;
}

.title {
  font-size: 1.25rem;
  margin-bottom: 3%;
}

.text {
  text-align: justify;
  font-size: 1rem;
}

.text-link {
  color: black;
  text-decoration: none;
}

.text-link:hover {
  color: gray;
}

/*==============================
  EMPTY SPACE ON THE RIGHT
==============================*/
.space-right {
  width: 20%;
}

/*==============================
  RESPONSIVE DESIGN: TABLET
==============================*/
@media screen and (max-width: 992px) {
  html {
    font-size: 13px;
    overflow-x: hidden;
  }

  .container {
    width: 80%;
  }

  .space-left {
    width: 0%;
  }

  .main-container {
    width: 100%;
    margin: 1vh 2vh 2vh 2vh;
  }

  .space-right {
    display: none;
  }

  .mobile-header {
    display: flex;
    font-size: 1.625rem;
    justify-content: space-between;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    opacity: .5;
  }

  .title {
    margin-top: 4%;
  }

  /*==============================
  RESPONSIVE MOBILE/BURGER
==============================*/
  
  .nav-logo {
    display: none;
  }

  .nav-links {
    position: fixed;
    right: 0px;
    height: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
  }
}

/*==============================
  RESPONSIVE DESIGN: PHONE
==============================*/
@media screen and (max-width: 576px) {
  .container {
    width: 90%;
    margin-top: 4vh;
  }

  .main-container {
    margin: 0;
    padding: 0;
  }

  .title {
    text-align: center;
  }

  .text {
    padding: 0 8% 0 8%;
  }
}
