* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: serif;
}

body, html {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

.header {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.background-video, .background-gif {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.content-section {
    background: #000;
    padding: 40px 20px;
    text-align: center;
    z-index: 2;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.album-cover {
    width: 500px;
    max-width: 80%;
    margin-bottom: 20px;
}

.release-date {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.links {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 10px 0;
    padding: 10px 0;
    background-color: #ff962d;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, color 0.3s ease, font-style 0.3s ease, font-weight 0.3s ease;
    text-align: center;
}

.link:hover {
    background-color: #fff;
    color: #ff962d;
    font-style: italic;
    font-weight: bold;
}

.subscribe-link {
    display: inline-block;
    margin-top: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease, font-style 0.3s ease, font-weight 0.3s ease;
}

.subscribe-link:hover {
    color: #ff962d;
    font-style: italic;
    font-weight: bold;
}

.footer {
    text-align: center;
    padding: 10px 0;
    background-color: #000;
    color: #fff;
}

#mc_embed_signup {
    background: #fff;
    clear: left;
    font: 14px Helvetica, Arial, sans-serif;
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #000;
}

#mc_embed_signup h2,
#mc_embed_signup label,
#mc_embed_signup .indicates-required,
#mc_embed_signup .response {
    color: #000;
}

#mc_embed_signup .form-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

#mc_embed_signup .image-container {
    flex: 0 0 200px;
    margin-left: 20px;
}

#mc_embed_signup .image-container img {
    width: 100%;
    height: auto;
}

#mc_embed_signup input[type="email"],
#mc_embed_signup input[type="text"],
#mc_embed_signup input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

#mc_embed_signup input[type="submit"] {
    background-color: #ff962d;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    height: 50px;
    line-height: 1.5;
    align-self: flex-start; /* Align the submit button to the start of the container */
}

#mc_embed_signup input[type="submit"]:hover {
    background-color: #e5533d;
}

@media (max-width: 600px) {
    #mc_embed_signup {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #mc_embed_signup .image-container {
        margin-left: 0;
        margin-top: 20px;
        flex: 0 0 auto;
    }

    #mc_embed_signup .form-container {
        width: 100%;
    }
}
