body{
    background-color: #F8DE25;
}

.roboto-bold {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'badaboom_bbregular';
    src: url('media/fonts/badaboom-webfont.woff2') format('woff2'),
        url('media/fonts/badaboom-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

.titles-badaboom{
    font-family: 'badaboom_bbregular';
    color: #ff000d;
    font-size: 3em;
    margin-top: 50px;
}

.menu-links {
    font-size: 1.4em;
    color: black;
}

.nav-link:focus, .nav-link:hover {
    color: #ff000d;
}

.tb {
    background-image: url(media/banner.jpg);
    min-height: 600px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

#main-content{
    background-color: whitesmoke;
    height: 500px;
}

.parrafos{
    font-size: 1.75em;
    font-family: "Montserrat", serif;
    font-weight: 400;
    text-align: center;
    margin: 0 20px;
}

.rightcol{
    background-image: url(media/bebida.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#productos{
    background-color: #ff000d;
    min-height: 450px;
}

.section-title{
    font-family: 'badaboom_bbregular';
    color: #F8DE25;
    font-size: 5em;
    margin-top: 50px;
    text-align: center;
    text-shadow: rgba(0, 0, 0, 0.298039) 0px 5px 0px;
}

.product-list-container {
    list-style: none; /* Elimina los bullets */
    padding: 0; /* Elimina el padding predeterminado */
    display: flex; /* Establece el contenedor como flexbox */
    justify-content: center; /* Centra los elementos horizontalmente */
    flex-wrap: wrap; /* Permite que los elementos se envuelvan si no caben */
    gap: 20px; /* Añade espacio entre los elementos */
}

.product-list {
    background: white; /* Fondo blanco */
    border-radius: 50%; /* Hace el fondo circular */
    width: 270px; /* Ajusta al tamaño de la imagen más algo de margen */
    height: 270px; /* Ajusta al tamaño de la imagen más algo de margen */
    display: flex; /* Habilita flexbox para centrar la imagen dentro del li */
    flex-direction: column; /* Alinea los elementos en columna */
    justify-content: center; /* Centra verticalmente la imagen y el texto */
    align-items: center; /* Centra horizontalmente la imagen y el texto */
    padding: 10px; /* Añade un poco de padding para no tocar los bordes */
    text-align: center; /* Centra el texto */
}

.product-title {
    font-family: 'badaboom_bbregular';
    font-size: 1.4rem; /* Ajusta el tamaño del texto para que no sea demasiado grande */
    color: #f80e9a; /* Color del texto */
    margin: 0; /* Elimina los márgenes predeterminados */
    line-height: 1.2rem;
}

#ventas{
    background-color: white;
}

#ventas h1{
    color: red;
}

#ventas p{
    font-size: 1.5rem;
    text-align: center;
}

