* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: var(--transition);
  }
  
  :root {
    --normal-font: 400;
    --bold-font: 600;
    --bolder-font: 900;
    --primary-color: #0652dd;
    --secondary-color: #000000;
    --line-height: 1.7rem;
    --transition: 0.4s ease-in;
  }
  
  html {
    scroll-behavior: smooth;
    overflo: hidden;
  }
  
  ul li {
    list-style-type: none;
  }
  
  a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
  }
  
  a:hover {
    color: var(--secondary-color);
  } 
  
  header {
      background-color: #eeeeee;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 1rem;
      box-shadow: 2px 3px 2px #f1f1f1;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1;
      width: 100%;
      font-family: 'Baskervville', serif;
    }
  
  .nav-link {
      margin-left: 1rem;
    }
  
    ul {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
  
    form {
      width: 100%;
      height: auto;
      margin: 0;
      background-color: #1b1b32;
      color: #f5f6f7;
      font-family: "Raleway", sans-serif;
      padding-bottom: 130px; 
      padding-top: 130px;
      text-align: center;
    }
      #email {
      margin: 10px 0 0 0;
      width: 60%;
      min-height: 3em;
      border-radius: 10px;
      font-size: 1rem;
      background-color: #eeeeee;
    }
      #submit {
      margin: 10px 0 0 0;
      width: 30%;
      min-height: 2em;
      border-radius: 5px;
      background-color: #f1c40f;
      font-size: 1rem;
      font-weight: bold;
    }
    #submit:hover {
      background-color: yellow;
    }
  
    h1 {
      font-size: 35px;
      padding: 25px;
    }
  
    label {
      padding: 2em;
      text-align: center;
      display: block;
      margin: 0.5rem 0;
  }
  
  .article {
    background-color: #3b3b4f;
    color: #eeeeee;
    padding: 20%;
    font-family: 'Baskervville', serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
  }
  
  .videoPage {
    background-color: #1b1b32;
    color: #eeeeee;
    font-family: "Raleway", sans-serif;
    padding: 20%;
    text-align: center;
  }
  iframe {
    height: 40%;
    max-width: 100%;
  }
  .wrapper { 
    display:flex; 
    justify-content:space-between;
    width: 55vmax; 
    height: auto;
    borde: 1px solid #eeeeee;
    padding-top: 5rem;
    padding-bottom: 10rem;
    gap: 2rem;
  }
  .box { 
    width: 100%px;
    height: 100%; 
    text-align:center; 
    border: 1px solid #eeeeee;
    padding: 15px;
    border-radius: 10px;
    background-color: ;
  }
  button{
    color: black;
    background-color: #f1c40f;
    padding: 5px 10px;
    margin: 20px;
  }
  h4 {
    background-color: black;
  }

  /* .ferris {
    height: 100%;
  }
  
  .wheel {
    border: 2px solid black;
    border-radius: 50%;
    margin-left: 25%;
    positio: absolute;
    height:300px;
    width:300px;
    margin: 100px;
    max-width: 500px;
    max-height: 500px;
    animation-name: wheel;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
  
  .line {
    background-color: black;
    width: 50%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: 0% 0%;
  }
  
  .line:nth-of-type(2) {
    transform: rotate(60deg);
  }
  .line:nth-of-type(3) {
    transform: rotate(120deg);
  }
  .line:nth-of-type(4) {
    transform: rotate(180deg);
  }
  .line:nth-of-type(5) {
    transform: rotate(240deg);
  }
  .line:nth-of-type(6) {
    transform: rotate(300deg);
  }
  
  .cabin {
    background-color: red;
    width: 20%;
    height: 20%;
    position: absolute;
    border: 2px solid;
    transform-origin: 50% 0%;
    animation: cabins 10s ease-in-out infinite;
  }
  
  .cabin:nth-of-type(1) {
    right: -8.5%;
    top: 50%;
  }
  .cabin:nth-of-type(2) {
    right: 17%;
    top: 93.5%;
  }
  .cabin:nth-of-type(3) {
    right: 67%;
    top: 93.5%;
  }
  .cabin:nth-of-type(4) {
    left: -8.5%;
    top: 50%;
  }
  .cabin:nth-of-type(5) {
    left: 17%;
    top: 7%;
  }
  .cabin:nth-of-type(6) {
    right: 17%;
    top: 7%;
  }
  
  @keyframes wheel {
     0% {
       transform: rotate(0deg);
     }
     100% {
       transform: rotate(360deg);
     }
  }
  
  @keyframes cabins {
    0% {
      transform: rotate(0deg);
    }
    25% {
      background-color: yellow;
    }
    50% {
      background-color: purple;
    }
    75% {
      background-color: yellow;
    }
    100% {
      transform: rotate(-360deg);
    }
  } */
  
  .footer {
      background-color: #9cacc6;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      paddin: 1rem 1rem;
      box-shadow: 2px 3px 2px #f1f1f1;
      /* top: 0;
      left: 0; */
      z-index: 1;
      width: 100%;
      font-family: 'Baskervville', serif;
      padding-top: 10px;
      padding-bottom: 10px;
  }
  
  
  @media only screen and (max-width: 768px) {
    .wrapper {
      display:flex; 
      flex-direction: column;
      justify-content:space-between;
      width: auto; 
      height: auto;
      borde: 1px solid #eeeeee;
      padding-top: 5rem;
      padding-bottom: 10rem;
      gap: 2rem; 
    }
  
    .nav-link {
      margin-left: 1rem;
      font-size: 0.8rem;
    }

    .footer {
      display: flex;
      flex-direction: column;
      justify-content:space-between;
      width: auto; 
      height: auto;
      padding-top: 5px;
      padding-bottom: 5px;
      font-family: 'Baskervville', serif;
    }
}