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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

/* Stile del body */
body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle, #FFF2F6, #FFFCFD);
    color: #000000;
    display: flex;
    flex-direction: column;
    gap: 96px;
    justify-content: center;
    /* Centra orizzontalmente */
    align-items: center;
    /* Centra verticalmente */
    height: 100vh;
    /* Altezza al 100% della finestra */
}

/* Layout principale */
.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 62px;
    width: 100%;
    padding: 48px;
}

.block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 520px;
    justify-content: center;
}

.block-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 520px;
}

.title {
    font-size: 48px;
    font-weight: bold;
    color: #000;
}

.description {
    font-size: 16px;
    font-weight: normal;
    color: #7A7B83;
}

/* Media query per schermi con larghezza massima di 320px e 768px (tablet e smartphone) */
@media (min-width: 320px) and (max-width: 768px) {
    body {
        height: 100vh;
        gap: 12px;
    }

    /* Modifica il layout della container per schermi piccoli */
    .container {
        flex-direction: column;
        /* Cambia la direzione da orizzontale a verticale */
        width: 100%;
        /* Rende il contenitore più largo su schermi piccoli */
    }

    #bathtube {
        width: 340px;
        height: 340px;
    }

}