/* Aplicamos la fuente Recoleta a todo el cuerpo */
@font-face {
    font-family: 'Recoleta-Light';
    src: url('../fonts/Recoleta-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Recoleta-Regular';
    src: url('../fonts/Recoleta-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Arial', serif;
    background-color: #83b1d9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.content {
    text-align: center;

}
.business-info{
    padding-bottom: 70px;
}
.business-info h1 {
    font-family: 'Recoleta-Light', serif;
    font-size: 7em;
    color: #2c3e50;
    font-weight: normal;
    margin-bottom: 0;
    line-height: 1;
}

.business-info p {
    font-size: 1.5em;
    color: black;
    margin: 0;
}
.business-info .advisory-info {
    
}

.contact-info {
    padding-bottom: 70px;
}

.contact-info h2 {
    font-size: 1.8em;
    color: #2c3e50;
}

.contact-info h3 {
    font-size: 1.2em;
    color: #7f8c8d;
    margin-top: 5px;
}

.contact-info p {
    font-size: 1.4em;
    margin: 3px;
}

.contact-info a {
    color: #2980b9;
    text-decoration: underline;
}

.contact-info a:hover {
    text-decoration: underline;
}
.contact-info .name-info{
    font-weight: bold;
    text-transform: uppercase;
}

.construction-message {
    
}

.construction-message p {
    font-size: 1.2em;
    color: black;
}

@media (max-width: 768px) {
    .business-info h1 {
        font-size: 5em;
    }
    .business-info p {
        font-size: 1.2em;
    }
    .contact-info h2 {
        font-size: 1.5em;
    }
    .contact-info h3 {
        font-size: 1.1em;
    }
    .contact-info p {
        font-size: 1.2em;
    }
    .construction-message p {
        font-size: 1.1em
    }    
}
@media (max-width:576px) {
    .business-info h1 {
        font-size: 4em;
    }
    .business-info p {
        font-size: 1em;
    }
    .contact-info h2 {
        font-size: 1.2em;
    }
    .contact-info h3 {
        font-size: 1em;
    }
    .contact-info p {
        font-size: 1em;
    }
    .construction-message p {
        font-size: 1em
    }
}
@media (max-width:425px) {
    .business-info h1 {
        font-size: 3em;
    }
    .business-info p {
        font-size: 0.8em;
    }
    .contact-info h2 {
        font-size: 1em;
    }
    .contact-info h3 {
        font-size: 0.9em;
    }
    .contact-info p {
        font-size: 0.9em;
    }
    .construction-message p {
        font-size: 0.9em
    }
}