/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #2c2c2c;
    font-family: Arial, sans-serif;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 500px;
    height: auto;
}

/* Estilos para el footer */
footer {
    width: 100%;
    background-color: #000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact a, .social a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.contact a img, .social a img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.contact a:hover, .social a:hover {
    color: #ccc;
}