@font-face {
  font-family: Inter;
  src: url(fonts/Inter-Variable.ttf);
}

body {
  position: relative;
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: Inter;
  background-color: #f0ead6;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  background-color: #f0ead6;
  color: #000000;
  padding: 40px 20px;
  padding-bottom: 60px;
  margin-left: 29px;
}

ul {
  list-style-type: disc;
  margin: 0;
  padding-left: 25px;
}

.nav-bar {
  position: absolute;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  max-width: 45px;
  width: 70vw;
  min-height: 100%;
  background-color: #28a99e;
  color: #f0ead6;
  text-shadow: 0 4px 4px #00000066;
  overflow: hidden;
  padding-bottom: 20px;

  transition: max-width 1s;
}

.nav-bar div {
  max-width: 380px;
  width: calc(70vw - 20px);
  padding: 10px;
}

.nav-bar a {
  color: currentColor;
  text-decoration: none;
}

.nav-bar a:hover {
  text-decoration: underline;
}

.nav-bar li:hover {
  color: #ead79c;
}

.nav-bar-menu-button {
  width: 25px;
  height: 25px;
  margin-bottom: 10px;
  cursor: pointer;
}

.nav-bar-links {
  margin-left: 12px;
  opacity: 0;

  transition: opacity 1s;
}

.main-title {
  font-size: 32px;
  color: #000000;
  font-style: italic;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

.main-subtitle {
  font-size: 22px;
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  color: #000000;
  text-align: center;
  margin-bottom: 50px;
}

.main-video {
  max-width: 90%;
  margin-bottom: 50px;
}

.main-image {
  margin-bottom: 50px;
  width: 400px;
  max-width: 90%;
}

.main p {
  width: 75%;
  font-size: 20px;
}

.main ul {
  width: 75%;
  font-size: 20px;
  margin-left: 25px;
}

.main button {
  margin: 20px 0;
}

.backfwd {
  position: fixed;
  left: 0;
  bottom: 0;
  width: calc(100% - 85px);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 10px;
  margin-left: 65px;
  font-size: 30px;
}

.backfwd .disabled {
  opacity: 0;
  cursor: default;
}

.question{
  font-weight: 600;
  font-family: Inter;
}
.answers {
    margin-bottom: 20px;
    font-family: Inter;
}
#submit{
  font-family: Inter;
  font-size: 20px;
  background-color: #28a99e;
  color: #fff;
  border: 0px;
  border-radius: 3px;
  padding: 20px;
  cursor: pointer;
  margin-bottom: 20px;
}

#submit:hover{
  background-color: #3a8;
}

form {
  text-align: left;
  width: 500px;
  margin: 20px auto 0;
  border: solid 1px lightgray;
}

form label {
  display: block;
  width: 490px;
  padding: 5px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  background: #28a99e;
  color: white;
}

form input {
  display: block;
  padding: 10px;
  width: 480px;
  border: none;
  font-size: 18px;
  font-family: Georgia, Times, serif;
  font-style: italic;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
}

form input[type="submit"] {
  background: #28a99e;
  color: white;
  cursor: pointer;
  width: 500px;
}

form input[type="submit"]:hover{
  background-color: #3a8;
}