body {
    height: 1024px;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: url('background-image.webp') no-repeat;
    background-attachment: scroll;
    background-size: cover;
    color: #838383;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    background: rgba(5, 5, 5, 0.8); /* Semi-transparent white background */
    position: absolute;
    top: 65%;
    transform: translateY(-50%); /* Optional: To center the box vertically */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #afafaf;
}

p {
    font-size: 1.0em;
    margin-bottom: 20px;
}

.email-signup {
    margin-bottom: 30px;
}

.email-signup input[type="email"] {
    padding: 10px;
    width: 300px;
    border: 1px solid #ff00d4;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 1em;
}

.email-signup button {
    padding: 10px 20px;
    background-color: #00e1ff;
    color: rgb(0, 0, 0);
    border
