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

body {
    background-image: url('./portfolio/sections/BUOH/13.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    /* Space for fixed navbar */
    padding-left: 0;
}

/* Mensaje de construcción */
.construction-message {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    color: white;
}

.construction-message span {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-family: 'Courier New', Courier, monospace;
    /* Match navbar vibe if desired, or keep as is */
}

/* Responsive Adjustments */
@media only screen and (max-width: 768px) {
    .construction-message span {
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 480px) {
    .construction-message span {
        font-size: 1.7rem;
    }
}