:root {
  --theme-dark-blue: #001c58;
  --tab-gray: #e5e8ed;
  --theme-light-blue: #193266;
  --theme-orange: #c43c30;
  --theme-blue: #203268;
}

@keyframes fade-in {
  0% { opacity: 0; }
  50% { opacity: 0; }
  90% { opacity: 1; }
}

.page {
  display: flex;
  width: 100vw;
  height: 100vh;
  color: #001c58;
  font-family: "Brandon Grotesque Regular" !important;
}
h1 {
  margin: 0;
  font-weight: normal !important;
  line-height: 1;
  font-family: "Brandon Grotesque Bold" !important;
}

p {
  margin: 0;
}
body {
  margin: 0;
}

.cover {
  z-index: 10;
  background: var(--theme-blue);
  position: fixed;
  left: 0;
  bottom: 0;
  width: 60vw;
  height: 100vh;
}
.cover:before {
  border-left: 3vw solid var(--theme-blue);
  border-bottom: 100vh solid transparent;
  content: "";
  height: 0;
  left: 60vw;
  position: absolute;
  width: 0;
}

.cover h1 {
  margin-top: calc(2vh + 3vw + 15.5vh);
  margin-bottom: 8vh;
  margin-left: 7vw;
  color: white;
  font-size: 2.65vw;
}

.mobile {
  display: none;
}


.teacher-part {
  position: fixed;
  left: 0;
  width: 54vw;
  padding-left: 0;
  top: calc(3vw + 2vh);
  height: calc(100% - 3vw - 2vh);
}

.teacher-part .background-image {
  margin-top: 2vh;
  width: 100vw;
}

.teacher-part p {
  font-size: 3vw;
  font-family: "Brandon Grotesque Bold" !important;
}

.teacher-part .teach-text {
  position: fixed;
  left: 3vw;
  bottom: 50vh;
}

.teacher-button-container {
  z-index: 50;
  position: fixed;
  top: calc(2vh + 3vw + 15.5vh + 2.65vw + 8vh + 2.6vw + 7vh + 2.6vw + 7vh + 2.6vw + 7vh);
  left: 0;
  width: 50vw;
  display: flex;
  justify-content: center;
}

.teacher-button-container  .teacher-button {
  display: block;
  color: white;
  padding: 0.2vh 2vw;
  background: var(--theme-orange);
}

.teacher-button-container  .teacher-button:hover {
  background: white;
  color: var(--theme-orange);
}

.student-button-container {
  z-index: 40;
  position: fixed;
  display: flex;
  justify-content: center;
  right: 5vw;
  width: calc(33.2vh + 10vw);
  top: calc(2vh + 3vw + 15.5vh + 2.65vw + 8vh + 2.6vw + 7vh + 2.6vw + 7vh + 2.6vw + 7vh);
}

.student-button {
  display: block;
  text-align: center;
  padding: 0.2vh 0;
  width: 30vw;
  color: white;
  background: var(--theme-dark-blue);
}

.student-button:hover {
  color: var(--theme-orange);
  background: var(--tab-gray);
}

.student-button, .teacher-button {
  cursor: pointer;
  text-decoration: none;
  font-size: 1.8vw;
  border-radius: 1vw;
  font-family: "Brandon Grotesque Bold" !important;
  transition: all 300ms ease-out;
  animation: fade-in 1.5s ease-out;
  animation-fill-mode: forwards;
}

.bold {
  font-family: "Brandon Grotesque Bold" !important;
}

.text-center {
  text-align: center;
}