/* Estilos para el botón */
.btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}

/* Estilos para el modal */
.modal {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* Fondo oscuro */
}

.modal.show {
    display: block !important; /* Oculto por defecto */
}
.modal *{
    font-family: "Arboria-Black";
}

.modal .modal-title{
    font-size: 2em;
    margin: 0;
    text-align: center;
    color: #44319E;
}

.modal-content {
    background-color: #BAEAFF;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: slide-down 0.4s ease-out;
    position: relative;
    margin: auto;
    /* left: 50%; */
    /* -webkit-transform: translateX(-50%); */
    /* transform: translateX(-50%); */
    margin-top: 20px;
}

.modal-content.second-color{
    background-color: #E8E5F4;
}
@keyframes slide-down {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: #44319E;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Media Queries para Responsividad */
@media (max-width: 600px) {
    .modal-content {
        width: 81%;
        margin: 20% auto;
    }
}
