/* Estilos generales */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fb;
    color: #333;
    text-align: center;
    padding: 50px;
    margin: 0;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Estilo para el logo */
.logo {
    max-width: 365px;
    height: auto;
}

/* Estilo para el título */
h1 {
    font-size: 1.5rem;
    color: #3c3c3c;
    margin-bottom: 30px;
    font-weight: bold;
}

/* Estilo para los enlaces/botones */
.link-container a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    margin: 5px;
    width: 100px;
    background-color: #ff7f50;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 25px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s;
    box-shadow: 0 4px 10px rgba(255, 127, 80, 0.3);
}

.link-container a img {
    width: 20px;  /* Ajusta el tamaño según tus preferencias */
    margin-right: 8px; /* Espacio entre la imagen y el texto */
    vertical-align: middle;
}

.link-container a:hover {
    background-color: #e76841;
    box-shadow: 0 6px 12px rgba(255, 127, 80, 0.4);
    transform: translateY(-2px);
}


.link-container a:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(255, 127, 80, 0.3);
}

/* Enfoque para accesibilidad */
.link-container a:focus {
    outline: 2px solid #e76841;
    outline-offset: 4px;
}
footer {
    margin-top: 20px;
    font-size: 12px;
    color: #777;
}

@media (max-width: 600px) {
    .logo {
        width: 100%; /* Reducción del tamaño del logo en móviles */
    }

    h1 {
        font-size: 1rem;
        color: #3c3c3c;
        margin-bottom: 30px;
        font-weight: bold;
    }

    .link-container a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        margin: 10px;
        width: 200px;
        background-color: #ff7f50;
        color: #fff;
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 600;
        border-radius: 8px;
        transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s;
        box-shadow: 0 4px 10px rgba(255, 127, 80, 0.3);
    }