* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Teachers", sans-serif;
    background: linear-gradient(
      106.5deg,
      rgba(255, 215, 185, 0.91) 23%,
      rgba(223, 159, 247, 0.8) 93%
    );
    animation-name: golgol;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
  }
  
  ::selection {
    background: red;
    color: white;
  }
  
  @keyframes golgol {
    0% {
      background: linear-gradient(
        20deg,
        rgba(255, 215, 185, 0.91) 23%,
        rgba(223, 159, 247, 0.8) 93%
      );
    }
    25% {
      background: linear-gradient(
        80deg,
        rgba(255, 215, 185, 0.91) 23%,
        rgba(223, 159, 247, 0.8) 93%
      );
    }
    50% {
      background: linear-gradient(
        120deg,
        rgba(255, 215, 185, 0.91) 23%,
        rgba(223, 159, 247, 0.8) 93%
      );
    }
    100% {
      background: linear-gradient(
        160deg,
        rgba(255, 215, 185, 0.91) 23%,
        rgba(223, 159, 247, 0.8) 93%
      );
    }
  }
  
  .container {
    height: 100vh;
    width: 100vw;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 25% 55% 20%;
  }
  
  header,
  main,
  footer,
  aside {
    padding: 2vw;
  }
  
  /* Header */
  header {
    display: flex;
    justify-content: space-between;
  }
  
  .logo {
    height: 20px;
    width: 20px;
    background: black;
    transform: rotate(45deg);
    transition: 0.5s ease;
  }
  
  .logo:hover {
    cursor: pointer;
    transform: rotate(90deg);
    border-radius: 6px;
  }
  
  header ul {
    list-style: none;
    text-align: right;
    color: red;
    cursor: pointer;
  }
  
  header ul li:first-child {
    font-weight: 600;
    margin-bottom: 25px;
    color: black;
    font-size: 20px;
  }
  
  /* Main */
  h1 {
    font-size: 80px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 10px;
  }
  /* Footer */
  footer {
    align-self: center;
  }
  footer p {
    font-size: 12px;
    width: 80%;
  }
  
  /* ASIDE */
  aside {
    grid-column: 2;
    grid-row: 1 / -1;
    padding-right: 10vw;
  }
  
  aside video {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  
  /* 
      MARK: Responsive
  */
  @media screen and (max-width: 680px) {
    .container {
      grid-template-columns: 100%;
      grid-template-rows: 25% 30% 15% 30%;
    }
    h1 {
      font-size: 60px;
      font-weight: 500;
    }
    footer p {
      width: 100%;
    }
    aside {
      grid-row: 4;
      grid-column: 1;
      padding: 0;
    }
  }
  