body{
    
    font-family:monospace, sans-serif;
    text-transform: capitalize;
}
body,html{
    min-height: 100vh;
    padding: 0;
    width: 100vw;
    justify-content: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: url("fotos/IMG_0442.png") center center;
    background-size: cover;
    margin: 0;
}
.wrapper {
    flex: 1;                      /* ocupa todo el espacio restante */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.contenedor{
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0, 0,0.1);
    margin: auto;
    width: 100%;
}
footer {
    background: #222;        /* Fondo oscuro */
    color: white;            /* Texto claro */
    text-align: center;      /* Centrar el contenido */
    padding: 20px 0px;      /* Espaciado interno */
    width: 100%;
    margin-top: auto;
}

footer p {
    margin: 8px 0;           /* Separación entre párrafos */
    font-size: 0.9rem;
}
.social-link{
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

footer a {
    
    color: white;          /* Color de los enlaces */
    text-decoration: none;   /* Sin subrayado */
    margin: 0 8px;
}

footer a:hover {
    text-decoration: underline; /* Subrayado al pasar el mouse */
}
