body {
    background-color: #fff5e5;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    background-image: url('../img/boceto-rb.png');
    background-size: cover;
    background-position: center;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header-row, .content-row, .footer-row {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-row {
    justify-content: center;
}

.content-row {
    justify-content: center;
}

.footer-row {
    justify-content: center;
    padding: 0 20px;
}

.footer {
    width: 100%;
    text-align: center;
}

.logo {
    display: block;
    height: auto;
    margin: 0 auto;
}



h1 {
    font-size: 40px;
    font-weight: normal;
    text-shadow: none;
    text-align: center;
}

a {
    color: #000;
}

p, address {
    text-align: center;
    margin: 20px 0;
    font-size: 20px;
}

.footer-copyright {
    text-align: right;
    position: absolute;
    right: 200px;
    font-size: 16px;
}

.row {
    width: 100%;
    margin: 0;
}

address {
    padding-top: 20px;
}


/* Large screens (1900px and above) */
@media screen and (min-width: 1901px) {
    .logo {
        max-width: 500px;
    }
}

/* Medium screens (768px to 1023px) */
@media screen and (min-width: 768px) and (max-width: 1900px) {
    .logo {
        max-width: 400px;
    }
}

/* Mobile screens (below 768px) */
@media screen and (max-width: 767px) {
    .logo {
        max-width: 100%;
    }
    h1 {
        font-size: 32px;
    }
    .footer-copyright {
        position: relative;
        text-align: center;
        right: 0;
    }
    p, address {
        font-size: 16px;
    }
    
    address {
        line-height: 1;
        padding-top: 0;
    }
    .content-row {
        min-height: 200px;
    }
}