body {
    font-family: 'Montserrat', sans-serif; /* Aplica Montserrat a todo el cuerpo del documento */
}

p {
    text-align: justify;
}
  
.col-container {
    display: flex;
}

.text-col {
    flex: 1;
    padding: 20px;
}

.image-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.image-col img {
    max-height: 100%;
    width: auto;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {

    .col-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }

    .text-col{
        display: block;
        width: 100%-20px;
        padding: 20px;
    }

    .image-col {
        flex: 1;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
        padding: 20px;
    }
    
}

.container {
    color: rgba(83, 83, 83, 1); 
}

.calendario {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
  }

.mixed{
    overflow: auto;
}

.imagen{
    width: 100%; /* Image container is now full-width */
}

h1, h2, h3 {
    text-align: center;
    color: rgba(71,201,204, 1);
}

.image img {
    margin: 40px auto; /* "auto" will center block elements */
    display: block; /* Set images to be "block" so they obey our auto margin */
}

#btnVolverArriba {
    background-color: rgba(71,201,204, 1);
    padding: 0px 20px; /* Aumenta el padding vertical y horizontal */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#btnVolverArriba b {
    font-size: 18px; /* Aumenta el tamaño del texto */
}

#btnVolverArriba:hover {
    background-color: rgba(85, 154, 156, 1);
}

.btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 30px;
    right: 30px;
}

#output-div {
    border: 5px solid rgba(71,201,204, 1);
    border-radius: 30px; /* Ajusta el valor para redondear más o menos las esquinas */
    padding: 10px; /* Agrega un espacio interno para que el contenido no toque los bordes */
}

.arrow {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
  }

.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

rect {
    cursor: pointer;
}