body {
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  --info-body-width: 33%;
}

body button {
  font-family: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  box-sizing: content-box;
  font-size: 16px;
}

body a {
  color: #324dc7;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  box-shadow: 0 12px 12px -6px #00142833;
}

img {
  width: 100%;
  object-fit: contain;
}

.logo {
  max-width: 15%;
  margin-top: 1%;
  margin-bottom: 1%;
  margin-left: 10%;
  z-index: 2;
}

.logo-img {
  content: url("images/big-logo.svg");
}

.nav-bar {
  display: flex;
  flex-direction: row;
}

.nav-option {
  position: relative;
  padding: 0.75em 1.25em;
  margin: 0.2em;
  background-color: white;
  border: none;
}

.nav-option .nav-dropdown:active {
  visibility: visible;
}

.nav-option:hover .nav-dropdown {
  visibility: visible;
}

.nav-option:focus .nav-dropdown {
  visibility: visible;
}

.nav-link {
  cursor: pointer;
  font-size: 1.2em;
  color: #505d68;
}

.nav-dropdown {
  width: 12rem;
  margin: 0;
  padding: 0;
  text-align: center;
  visibility: hidden;
  position: absolute;
  box-shadow: 0 12px 12px -6px #00142833;
  background-color: white;
  border-radius: 3px;
  list-style: none;
  padding-top: 15px;
  left: -40%;
}

.option-grid {
  display: flex;
  flex-direction: row;
}

.option {
  padding: 0.75em 1.25em;
  margin: 0.2em;
  background-color: white;
  border: none;
}

.dropdown-item {
  padding: 10px;
}

.dropdown-item a {
  text-decoration: none;
  color: #505d68;
}

.login-button {
  width: 100%;
  max-width: 80px;
  margin-right: 21%;
  border: none;
  padding: 7px 15px;
  text-align: center;
  cursor: pointer;
  text-decoration: nonee;
  font-size: 1em;
  background-color: #555555;
  border-radius: 4px;
  display: inline-block;
  color: white;
}

.banner {
  padding: 7% 10%;
  background-image: url("images/background.png");
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: scale-down;
}

.banner-content {
  color: black;
  font-size: 2em;
}

.access-is-everything {
  font-weight: 700;
}

.info {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 5%;
}

.info-title {
  font-size: 2.3em;
  padding-top: 50px;
}

.info-body {
  width: var(--info-body-width);
}

.units-title {
  font-size: 2.3em;
  padding-top: 50px;
  padding-bottom: 50px;
}

.unit-table {
  font-size: 1.5em;
  text-align: left;
  margin-bottom: 70px;
}

.unit-table tr {
  cursor: pointer;
}

.unit {
  padding: 25px;
}

.unit a {
  text-decoration: none;
}

.unit-title {
  padding-left: 25px;
}

.topic {
  padding: 25px;
}

.footer {
  box-shadow: 0 -5px 5px #00142833;
  width: 100vw;
  bottom: 0;
  left: 0;
  position: fixed;
  background-color: white;
}

.extras {
  margin: 5px;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 1.2em;
  list-style: none;
}

#-hamburger {
  display: none;
  padding-right: 5%;
  font-size: 2rem;
}

#-hamburger input {
  display: block;
  position: absolute;
  width: 40px;
  height: 32px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}

#-hamburger input:checked + #-menu {
  visibility: visible;
  transform: none;
}

#-hamburger span {
  display: block;
  position: relative;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  background: #cdcdcd;
  border-radius: 3px;
  z-index: 1;
}

#-hamburger #-menu {
  width: 100%;
  top: 0;
  transform-origin: 0% 0%;
  -webkit-font-smoothing: antialiased;
  transform: translate(0,-100%);
  visibility: hidden;
  position: absolute;
  overflow: hidden;
  box-sizing: border-box;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  background: white;
  left: 0;
}

#-hamburger #-menu-list {
  padding-top: 15%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding-bottom: 50px;
}

#-hamburger #-menu-list div {
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.space-between {
  justify-content: space-between;
}

.center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.no-margin {
  margin-right: 0;
}

.flex {
  display: flex;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1000px) {

  body {
    --info-body-width: 90%;
  }
  
  .logo {
    max-width: 60%;
  }
  
  #-nav-bar {
    display: none;
  }
  
  .nav-link {
    font-size: 1em;
  }
  
  #-big-login {
    display: none;
  }
  
  #-hamburger {
    display: block;
  }
  
  .option-grid {
    display: grid;
    grid-template-columns: auto auto;
  }

}