/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Full-Page Layout */
html, body {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Libre Baskerville', serif;
    background-color: #f0f0f0;
    text-align: center;
}

/* Centered Container */
.container {
    width: 60%;
    max-width: 800px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Company Name (Logo) */
.logo {
    font-weight: 400;
}

/* Tagline */
.tagline {
    font-size: 0.8rem;
    font-weight: 300;
    color: #000000;
    margin-top: 24px;
    line-height: 1.5;
    text-align: center;
    width: 100%;
}

/* Footer (Stretching Across Full Width) */
.footer {
    position: absolute;
    bottom: 20px;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    padding: 0 15%;
    font-size: 0.6rem;
    font-weight: 300;
    color: #000000;
    text-align: center;
}

/* Mobile-Friendly Adjustments */
@media (max-width: 768px) {
    .container {
        width: 80%;
    }

    .logo {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .footer {
        width: 100vw;
        font-size: 0.6rem;
        padding: 0 10%;
        flex-direction: column;
        gap: 5px;
    }
}
