body {
    display: flex;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    letter-spacing: -0.25px;
    background-color: var(--bg-body);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.div-header-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-bottom: 20px;
}

.img-header-logo {
    height: 4em;
    width: auto;
}

.header {
    color: var(--text-header);
    font-size: 64px;
    font-family: 'Cinzel', serif;
    margin: 0;
}

.div-main-area {
    position: relative;
    width: 80%;
    max-width: 1200px;
    padding: 30px 50px 10px;
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
    background: var(--bg-main);
    border-radius: 20px;
    box-shadow: 0 2px 6px var(--shadow);
}

@media (max-width: 768px) {
    .div-main-area {
        width: 95%;
        padding: 15px;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .header {
        font-size: 40px;
    }
    
    .img-header-logo {
        height: 2.5em;
    }
}

@media (max-width: 480px) {
    body {
        margin: 0;
        background: var(--bg-body);
    }

    .div-main-area {
        width: 95%;
        margin-top: 0px;
        margin-bottom: 0px;
        border-radius: 0;
        box-shadow: none;
        background: var(--bg-main);
    }

    .img-header-logo {
        height: 1.8em;
    }

    .header {
        font-size: 28px;
    }
}