*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: roboto, sans-serif;
}

.home {
    height: 100vh;
    position: relative;
}

video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Ensures the video is behind the content */
    pointer-events: none; /* Prevents users from interacting with the video */
}

.home-content {
    position: relative;
    padding-top: 40vh;
    color: #fff;
    text-align: center;
}
.home-content img {
  float: left;
  height: clamp(100px, 7vw, 130px);
}
.home-content h1 {
    position: relative;
    font-family: Lobster, serif;
    font-size: clamp(100px, 7vw, 130px);
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Same text shadow for consistency */
}

.home p {
    font-size: clamp(25px, 4vw, 40px);
    margin-top: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Same text shadow for consistency */
}

.home-content button {
    display: block;
    font-size: 18px;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    background: transparent;
    color: #fff;
    margin: 50px auto 0;
    padding: 12px 20px;
    cursor: pointer;
}

form {
    margin-top: 20px;
    text-align: center;
}

input[type="email"] {
    padding: 10px;
    width: 300px;
    border: 1px solid #fff;
    border-radius: 5px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.2); /* Semi-transparent background */
    color: white;
    text-shadow: none; /* Remove shadow for inputs */
    text-align: center; /* Center both placeholder and input text */
}

input[type="submit"] {
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 5px;
    background: transparent;
    color: white;
    cursor: pointer;
}

input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.8); /* Make placeholder text visible */
}

input[type="submit"]:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1000px) {
    .home-content h1 {
      font-size: 200px;
    }
    .home p {
      font-size: 120px;
    }

    input[type="email"] {
      width: 70vw;
      padding: 15px;
      font-size: 48px;
    }

    input[type="submit"] {
      padding: 15px 25px; /* Increase padding */
      font-size: 48px; /* Increase font size for easier tap */
      width: 80%; /* Adjust button width */
    }

    form {
      margin-top: 20px;
      text-align: center;
    }
}


