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

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body{
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

main{
    max-width: 1600px;
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding: 20px;
}

.box-wrapper-1 { grid-area: 1 / 1 / 2 / 3; }
.box-wrapper-2 { grid-area: 1 / 3 / 2 / 5; }
.publicidad-wrapper { grid-area: 2 / 1 / 4 / 5; }

.centered{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.box-shadow{
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 4px 0px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 4px 0px; 
    -moz-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 4px 0px;
}

.box-wrapper-1, .box-wrapper-2 {
    display: flex;
    justify-content: left;
    align-items: end;
    width: 100%;
    height: 100%;
    padding: 10px;
    background-position: center;
    
}

.swiper, .swiper-image{
    width: 100%;
    height: 100%;
}

.caja-titulo-wrapper{
height: 20%;
width: 100%;
color: white;
display: flex;
justify-content: left;
align-items: center;
padding: 10px;
}

.caja-estado-wrapper{
width: 100%;
height: 80%;
display: flex;
justify-content: center;
align-items: center;
}

.box-wrapper-1 > img, .box-wrapper-2 > img{
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.rounded{ border-radius: 8px;}

h1{
    color: white;
    font-weight: 200;
}

