body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Plain', sans-serif;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background {
    background-image: url('img/135513875_LShaefer_gettyImages.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    filter: blur(7px) brightness(0.5) grayscale();
    z-index: 0;
}

.content {
    text-align: center;
    z-index: 1;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 380px;
    margin-bottom: 30px;
    height: auto;
}

h1 {
    font-size: 2em;
    font-weight: 400;
}

.subscribe-container {
    display: none;
    justify-content: center;
    align-items: center;
}

#email-input {
    padding: 15px 20px;
    font-size: 1em;
    width: 300px;
    max-width: 80%;
    border: none;
    border-radius: 50px 0 0 50px;
    outline: none;
}

button {
    padding: 15px 20px;
    font-size: 1em;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

button:hover {
    background-color: #292929;
}

footer {
    opacity: 0.3;
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    font-size: 0.3em;
    z-index: 1;
}

footer p {
    margin: 1px 0;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-size: 0.75em;
}

footer a:hover {
    text-decoration: underline;
}

.message {
    margin-top: 10px;
    font-size: 0.8em;
}

.error-message {
    color: rgb(217, 0, 0);
}

.success-message {
    color: rgb(0, 180, 0);
}

.icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.icons-container .icon {
    width: 32px;
    height: 32px;
    background-size: contain;
    cursor: pointer;
    background-color: none;
    transition: opacity 0.3s ease;
    margin: 10px;
}


.icons-container .icon:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {

    .subscribe-container {
        flex-direction: column;
        align-items: center;
    }

    #email-input {
        max-width: 100%;
        border-radius: 50px;
    }

    button {
        border-radius: 50px;
        margin-top: 10px;
    }
}
