﻿#banner
{
    height: auto;
    background-color: #EDEDED;
    background-image: url("/Personas/Paginas/PROMOCIONES/2024/nba/img/Banner-nba-Desktop.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 13%;
}

#contenedor-info
{
    padding-top: 7%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contenedor-info img
{
    width: 550px;
}

#contenedor-info .texto
{
    text-align: center;
}

#contenedor-info .texto h1
{
    padding-top: 35px;
    padding-bottom: 35px;
}

.botones 
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.botones a
{
    margin: 15px;
    text-align: center;
}



/* Media Queries */
@media(min-width:769px) and (max-width:992px)
{
    #banner
    {
        background-color: #EDEDED;
        background-image: url("/Personas/Paginas/PROMOCIONES/2024/nba/img/Banner-nba-Tablet.webp");
        background-repeat: no-repeat;
        background-size: cover;
        padding-bottom: 13%;
    }
    
    #contenedor-info img
    {
        width: 280px;
    }
}

@media only screen and (max-width:768px)
{
    #banner
    {
        background-color: #EDEDED;
        background-image: url("/Personas/Paginas/PROMOCIONES/2024/nba/img/Banner-nba-Mobile.webp");
        background-position: 0% 0%;
        background-repeat: no-repeat;
        background-size: cover;        
    }

    .botones 
    {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    #contenedor-info .texto
    {
        text-align: left;
    }

    #contenedor-info img
    {
        width: 280px;
    }
}
/* End media Queries */