/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Titillium Web', sans-serif;
}

.background-image {
    background-image: url('../images/fondolinktree.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.center-image {
    max-width: 80%;
    height: auto;
}

.construction-message {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
    color: #5d531b;
    font-size: 24px;
    font-weight: bold;
}

/* Responsivo para dispositivos móviles */
@media (max-width: 768px) {
    .center-image {
        max-width: 90%;
    }

    .construction-message {
        font-size: 20px;
        padding: 15px;
    }
}
