/* General Styling */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #b885c1, #7a3b84);
    color: #f8f5ef;
    min-height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 20px;
    max-width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    margin-top: 10px;
    font-size: 2em;
    margin-bottom: 10px;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: auto;
}

input,
button {
    padding: 10px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    width: 85%;
    margin-bottom: 10px;
}

input {
    background-color: rgba(255, 255, 255, 0.1);
    color: #f8f5ef;
}

input::placeholder {
    color: rgba(248, 245, 239, 0.7);
}

.subscribe {
    background-color: #f8f5ef;
    color: #7a3b84;
    cursor: pointer;
    font-size: 1.5em;
    transition: background-color 0.3s, color 0.3s, transform 0.1s;
    letter-spacing: 1px;
}

.subscribe:hover {
    background-color: #b885c1;
    color: #f8f5ef;
    transform: scale(1.05);
}

.subscribe:active {
    background-color: #7a3b84;
    color: #f8f5ef;
    transform: scale(0.95);
}

.button {
    background-color: #f8f5ef;
    color: #7a3b84;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
        background-color: #e8e5df;
        color: #b885c1;
}


/* Social and Podcast Links */
.social-links a, .podcast-links a {
    color: #f8f5ef;
    margin: 0 10px;
    font-size: 2em;
    text-decoration: none;
    transition: color 0.3s;
    margin-bottom: 20px;
}

.social-links a:hover, .podcast-links a:hover {
    color:#b885c1;
}

.container img {
    max-width: 85%;
    height: auto;
    margin: 0; /* Remove the bottom margin */
}

.download-button, a.download-button {
    display: inline-block;
    background-color: #b885c1;
    color: #f8f5ef;
    padding: 10px 20px;
    font-size: 1.5em;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    width: auto;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 10px 0;
}

.download-button:hover, a.download-button:hover {
    background-color: #e8e5df;
    color: #b885c1;
}
/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 1.5em;
    }

    input,
    button {
        font-size: 1em;
    }

    .social-links a, .podcast-links a {
        font-size: 1.5em;
    }

    .container img {
        max-width: 80%;
    }
   
}
