* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html, body {
    height: 100%;
    background: white;
    font-family: Arial, sans-serif;
  }

  .video-wrapper {
    position: absolute;
    top: 13px;
    left: 13px;
    right: 13px;
    bottom: 13px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .background-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 5;
  }

  .social-icons{
    position: absolute;
    bottom:  30px;
    right: 50%;
    z-index: 10;
    transform: translateX(50%);
  }

  .icons{
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
  }

  .icons img{
    width: 28px;
    height: 28px;
  }

  .tiktok{
    width: 25px !important;
    height: 25px !important  
  }
  .twitter{
    width: 20px !important;
    height: 20px !important  
  }
  .pinterest{
    width: 25px !important;
    height: 25px !important  
  }
  .youtube{
    width: 25px !important;
    height: 25px !important  
  }
  .linkedin{
    width: 20px !important;
    height: 20px !important  
  }

  .content {
    scale: 1.2;
    color: white;
    text-align: center;
    padding: 20px;
    max-width: 90%;
    z-index: 10;
  }

  h1 {
    font-size: 2.3em;
    margin-bottom: 0.5em;
    width: 500px;
    margin: auto;
  }

  p {
    font-size: 1.1em;
    max-width: 400px;
    margin: 0.4em auto 1.5em auto;
  }

  form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  input[type="email"] {
    padding: 10px;
    width: 260px;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-size: 1em;
    background: rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(10.199999809265137px);
  }
  input[type="email"]:focus {
    outline: none;
  }

  input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.651);
  }

  button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: white;
    color: black;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.753);
  }

  button:hover {
    background-color: #f3f3f3;
  }

  @media only screen and (max-width: 600px) {
    
    
    h1 {
      font-size: 2em;
      margin: 0 auto 0.5em auto;
      width: 100%;
      
    }
  
    p {
      font-size: 1em;
      margin-bottom: 1.5em;
      max-width: 600px;
      margin: 0 auto 1.5em auto;
    }

    .icons{
      display: flex;
      gap: 25px;
    }
  

  }
