body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background: url('fondo.jpg') no-repeat center center fixed;
    background-size: cover;
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#enterButton, .contacto-redes-sociales {
    font-size: 24px;
    padding: 20px 40px;
    background-color: #00000069;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    margin: 10px 0; /* Margen superior e inferior de 10px */
}

#enterButton:hover, .contacto-redes-sociales:hover {
    background-color: #3232321a;
}

.contacto-redes-sociales {
    font-size: 20px;
    padding: 15px 30px;
    background-color: #1d1d1d70;
}

.contacto-redes-sociales:hover {
    background-color: #2d2d2d9a;
}