/* Estilo para el Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-contenido {
    background-color: #333;
    margin: auto;
    padding: 28px;
    border-radius: 12px;
    max-width: 600px;
    text-align: justify;
    color: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    position: relative;
    top: 50%;
    transform: translateY(-50%); /* Centrado vertical */
}

.modal-contenido h3 {
    text-align: center;
    margin: 10px 0;
    font-size: 24px;
    color: #f0a500; /* Puedes cambiar el color si deseas */
}

.tecnologias {
    color: #f0a500;
}

.cerrar {
    position: absolute;
    top: 8px;
    right: 12px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.cerrar:hover {
    color: #ff5252;
}