@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


html {
	font-size: 80.5%;
	font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-image: url('../img/verificacion.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
}

h1 {
    font-size: 3em;
    letter-spacing: 4px;
    color: #000000;
    margin-bottom: 10px;
    
}

h2 {
    font-size: 2em;
    color: #000000;
    margin-bottom: 20px;
}

button {
    padding: 15px 20px;
    background-color: #f48f42; /* Color azul */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.5em;
    cursor: pointer;
    transition: background-color 0.3s;
}

button.si:hover {
    background-color: #ffffff;
    color: #ffc800; /* Color azul más oscuro al pasar el mouse */
}

button.no:hover {
    color: #E04D2A;
    background-color: #ffffff; /* Color azul más oscuro al pasar el mouse */
}


button.si {
    padding: 15px 20px;
    background-color: #debd45; /* Color azul para el botón "Sí" */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.5em;
    cursor: pointer;
    transition: background-color 0.3s;
}

button.no {
    padding: 15px 20px;
    background-color: #E04D2A; /* Color azul para el botón "Sí" */
    color: white;
    margin-right: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1.5em;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.modal-content {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    background-color: #f1efef;
    margin: 15% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 30%;
    height: 30%;
    text-align: justify;
    text-align: center; /* Centra el texto horizontalmente */
}

.close {
    color: #000000;
    float: right;
    font-size: 28px;
    font-weight: bold;
    top: 5px; /* Ajusta este valor según sea necesario */
}

.close:hover,
.close:focus {
    color: rgb(252, 0, 0);
    text-decoration: none;
    cursor: pointer;
}
