.space {
    height: 80px;
}
.space2 {
    height: 40px;
}
.space3 {
    height: 30px;
}

body {
    font-family: "Albert Sans", sans-serif;
    color: #3F0D12;
    background: linear-gradient(to bottom, #f0f5ef, #D6E4D3);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

a {
    width: 60%;
    max-width: 1200px;
    text-align: center;
    text-decoration: none;
}

button {
    font-family: "Albert Sans";
    font-weight: 700;
    font-size: 12px;
    padding: 10px 14px;
    background-color: #AC98FF;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    box-sizing: border-box;
    margin: 0 0 30px 0;
}

.container h1 {
    font-family: "Albert Sans", sans-serif;
    color: #3F0D12;
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 40px 0;
}

.container {
    width: 80%;
    max-width: 1000px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.container p {
    font-size: 18px;
    text-align: left;
    line-height: 1.5;
    margin: 0 0 40px 0;
}

main .navigate p {
    font-family: "Albert Sans", sans-serif;
    font-weight: 500;
    font-size: 16px !important;
    color: black !important;
    text-decoration: none !important;
    padding: 20px 20px;
}

iframe {
    max-width: 1000px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    aspect-ratio: 16 / 9;
}

footer {
    width: 60%;
    max-width: 1200px;
    text-align: center;
    margin: 40px auto 0 auto;
    margin-top: 40px;
    padding: 20px;
    font-size: 14px;
    background-color: transparent;
}

/* Responsive Styles */
@media only screen and (max-width: 768px) {
    .container {
        width: 85%;
        padding: 20px;
    }

    .container h1 {
        font-size: 36px;
        margin: 0 0 30px 0;
    }

    button {
        padding: 12px 18px;
        font-size: 14px;
    }

    iframe {
        max-width: 100%;
        aspect-ratio: 16 / 9;
    }

    footer {
        width: 80%;
    }
}

@media only screen and (max-width: 480px) {
    .container {
        width: 90%;
        padding: 20px;
    }

    .container h1 {
        font-size: 28px;
        margin: 0 0 20px 0;
    }

    button {
        padding: 8px 12px;
        font-size: 12px;
    }

    iframe {
        max-width: 100%;
        height: auto;
    }

    footer {
        width: 100%;
        font-size: 12px;
    }
}
