@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,300;0,400;0,500;1,200&family=Roboto:wght@100;300;400&display=swap');

* {
    margin: 0;
    padding: 0;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    padding: 20px;
    background-color: black;
}

ul {
    font-family: 'Josefin Sans', sans-serif;
    list-style: none;
    margin: 0 50px;
    padding: 0;
    font-weight: lighter;
}

li {
    display: inline-block;
    margin-right: 10px;
    padding: 0 8px;
}

a:link,
a:visited,
a:hover,
a:hover,
a:active {
    text-decoration: none;
}

.header h1 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 40px;
    font-weight: bold;
    color: #F9FAF8;
    margin: 0 70px;
    font-weight: lighter;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 20px;
    background-color: black;
}

.text {
    width: 65%;
    margin: 64px;
}

.text p {
    width: 70%;
    padding: 5px;
    font-family: 'Roboto', sans-serif;
    font-weight: lighter;
}

.hero h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #F9FAF8;
    font-weight: lighter;
}

.header a, .hero p {
    color: #E5E7EB;
    font-size: 18px;
}

.container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info {
    background-color: #0b468c;
}

.info h2 {
    text-align: center;
    padding: 64px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 48px;
    font-weight: lighter;
    color: whitesmoke;
}

.cyberpunks {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
    gap: 50px;
}

.cyberpunks p {
    text-align: center;
    padding: 12px 0;
    margin: auto;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 20px;
    color: whitesmoke;
    font-weight: lighter;
}

.cyberpunks img {
    width: 200px;
    height: auto;
}

.img img:hover {
    cursor: pointer;
    transform: scale(1.2);
    border: 3px solid black;
}

.img {
    border: 3px solid black;
    height: 300px;
    width: 200px;
    transition: all .5s ease;
}

.register {
    background-color: #0b468c;
    font-family: 'Roboto', sans-serif;
    font-weight: lighter;
    font-size: 15px;
    padding: 10px;
    width: 100px;
    border-radius: 10px;
    border: none;
    color: whitesmoke;
    transition: all 0.2s;
}

.button {
    padding: 8px 0;
}

button:hover {
    background-color: #092047;
    transform: translateY(-0.25em);
    cursor: pointer;
}

.quote {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    background-color: #b7c1de;
    padding: 64px 0;
}

.quote p {
    font-weight: lighter;
    font-size: 42px;
    width: auto;
    color: black
}

.quote footer {
    font-size: 20px;
    padding-top: 8px;
    font-weight: lighter;
}

.signup {
    display: flex;
    justify-content: center;
    background-color: #092047;
  }
  
  .action {
    display: flex;
    align-items: center;
    background-color: black;
    border: 2px solid black;
    border-radius: 24px;
    margin: 48px 0;
    padding: 32px 48px;
    max-width: 1100px;
  }
  
  .email h2 {
    color: whitesmoke;
    text-shadow: 1px 1px black;
    font-family: 'Josefin Sans', sans-serif;
    padding-bottom: 8px;
    font-weight: lighter;
  }
  
  .email p {
    padding-right: 24px;
    color: whitesmoke;
    font-family: 'Josefin-sans', sans-serif;
    font-weight: lighter;
  }

  .footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: lighter;
    background-color: black;
    color: whitesmoke;
  }
  
  @media screen and (max-width: 768px) {
    .header {
      padding: 10px;
    }
  
    .header h1 {
      font-size: 30px;
      margin: 0 20px;
    }
  
    ul {
      margin: 0 20px;
    }
  
    .hero {
      flex-direction: column;
      text-align: center;
    }
  
    .text {
      width: 90%;
      margin: 32px 0;
    }
  
    .text p {
      width: 100%;
      font-size: 16px;
    }
  
    .hero h2 {
      font-size: 36px;
    }
  
    .cyberpunks {
      flex-direction: column;
      gap: 20px;
    }
  
    .cyberpunks p {
      font-size: 18px;
    }
  
    .cyberpunks img {
      width: 200px;
      height: auto;
    }
  
    .quote p {
      font-size: 28px;
    }
  
    .quote footer {
      font-size: 16px;
    }
  
    .signup {
      flex-direction: column;
      align-items: center;
    }
  
    .action {
      flex-direction: column;
      padding: 16px;
      margin: 32px 0;
    }
  }