/* === Resets generales por defecto=== */
*{
    margin: 0;
    padding: 0;
    box-sizing: content-box;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100vw;/* Fallback */
    width: 100dvw;


    height: 100vh;
    height: 100dvh;

    background: lavender;
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    width: 80vw;
    width: 80dvw;

    max-width: 1100px;


    height: 90vh;
    height: 90dvh;

    background-color: rgb(82, 178, 178);
    border-radius: 2rem;
}

main h1{
    padding: 2rem;
    font-size: clamp(1.3rem,5vw,3rem);
}