:root {
    --negro: #000000;
    --blanco: #FFFFFF;
    --crema: #F4EEE5;
    --verde: #2C9D33;
    --rojo: #992929;
    --subrayar: var(--verde);
    --h1_font_size: 3.8rem;
    --h2_font_size: 3rem;
    --h3_font_size: 2.4rem;
    --p_font_size: 1.1rem;
}

@font-face {
    font-family: 'YoungSerif';
    src: url('/fonts/YoungSerif-Regular.woff2') format('woff2'),
    url('/fonts/YoungSerif-Regular.woff') format("woff");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'YoungSerif';
    src: url('fonts/YoungSerif-Bold.woff2') format('woff2'),
    url('fonts/YoungSerif-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

body {
    background-color: var(--crema);

}

main {
    text-align: center;
    margin: 5% 5% 0 5%;
}

h1 {
    font-family: 'YoungSerif', serif;
    font-weight: bold;
    font-style: normal;
    font-size: var(--h1_font_size);
    letter-spacing: 0.05em;
    text-align: center;
    max-width: 100%;
    margin: auto;
}

h2 {
    font-family: 'YoungSerif', serif;
    font-weight: normal;
    font-style: normal;
    font-size: var(--h2_font_size);
    margin: 2% 0;
}

.rojo {
    color: var(--rojo);
}

p {
    font-family: 'YoungSerif', serif;
    font-weight: normal;
    font-style: normal;
    font-size: var(--p_font_size);
    line-height: 1.6;

}

img {
    width: 50%;
    height: auto;
    border-radius: 15px;
}

#logo1 {
    width: 20vw;
    height: auto;

}

#carrito_svg {
    width: 5vw;
    height: auto;

}

h2, h3, p {
    overflow-wrap: break-word;
}

#derechos {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 3%;
}

.proximamente {
    margin: 0;
}

.contenedor {
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 900px) {

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
    }

    #logo1 {
        width: 50vw;
    }

    img {
        width: 95%;
        height: auto;
    }
    .contenedor {
        flex-direction: column;
    }
    #carrito_svg {
        width: 10vw;
        height: auto;
    }
}
