/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Fondo con imagen */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg-bayviewresidence.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    filter: brightness(0.6);
}

/* Contenido principal */
.content {
    max-width: 800px;
    padding: 20px;
    z-index: 1;
}

/* Logo */
.logo {
    max-width: 480px;
    border: #fff 10px solid;
    margin-top: 4em;
    margin-bottom: 30px;
}

/* Textos */
h1 {
    font-size: 3.0rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}
.footer {
    text-align: center;
    padding: 3em;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    p {
        font-size: 1rem;
    }
    .logo {
        max-width: 260px;
    }
    
}