body{
    background-color: rgb(255, 255, 190);
    display: flex;
    flex-direction: column;
    align-items: center;

}

span{
    color: red;
}

#banner{
    width: 95%;
}

#banner2{
    width: 400px;
    margin-top: 20px;
}

#banner3{
    width: 95%;
    margin-top: 20px;
    margin-bottom: 20px;
}

p{
    font-size: larger;
    color: black;
    font-weight: bold;
    text-align: justify;
    line-height: 1.6;
    width: 80%;
}

#probar-sitio{
    background-color: orange;
    font-size: 30px;
    text-align: center;
}


#title-piso{
    font-size: larger;
    color: white;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
    width: 100%;    
}

footer{
    margin-top: 10px;
    color: #FFF;
    text-align: center;
    padding: 10px 0;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    width: 100%;
    background-color: #000;        
}

#cocuyotec{
    color: blue;
}


/* Estilos del modal */
.modal {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semi-transparente */
}

.modal-content {
    background-color: black;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    text-align: center;
    border-radius: 10px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.subject-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
}

.subject {
    width: 100px;
    text-align: center;
    color: white;
}

.subject img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}

.subject p {
    margin-top: 5px;
    font-size: 16px;
    margin-left: 10px;
    color: white;
    text-align: center;
}

/* Animación para mostrar el modal */
.modal.show {
    display: block;
}

    /* Estilo para pantallas móviles */
    @media (max-width: 768px) {
        #banner2{
            width: 90%;
            margin-top: 20px;
        }

    }



