@import url('https://fonts.cdnfonts.com/css/futura-std-4');

body {
    font-family: 'Futura Std', sans-serif;
    margin: 0;
    padding: 0;
    color-scheme: light;
    background: #fff;
    color: #000;
}

.horarios-container {
    display: flex;
    justify-content: center;
    align-content: center;
    min-height: 80vh;
    position: relative;
}

.horarios-content {
    color: #002060;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 40%;
    justify-content: center;
    text-align: center;
    align-content: center;
    z-index: 2;
    background-color: #f7f7f7a2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin: 50px 0;
}

.horarios-content h1 {
    flex-basis: 100%;
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: bold;
}

.horarios-item {
    margin: 10px;
}

.horarios-item h2 {
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 10px;
}

.horarios-item p {
    font-size: 18px;
    margin: 5px 0;
}

.horarios-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/fachada2.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    opacity: 0.2;
    z-index: 1;
}

@media (max-width: 1530px) {
    .horarios-content {
        width: 60%;
    }
}

@media (max-width: 1140px) {
    .horarios-content {
        width: 70%;
    }
}

@media (max-width: 880px) {
    .horarios-content {
        width: 85%;
    }
}