@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@300;400;500;600&display=swap');


.html {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    font-family: 'Dosis', sans-serif;
    font-size: 16px;
    color: white;
    background: url('/img/fondoWebOscuro.jpg') no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.container {
    flex: 1;
    margin: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.logo {
    display: block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: url(/img/logoGrande.png) no-repeat;
    width: 300px;
    height: 125px;
    padding-left: 125px;
    margin-left: 20px;
}

.servicios {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    font-size: 1.6em;
}

.servicios span {
    line-height: 30px;
}

.footer {
    display: flex;
    flex-direction: row;
    padding: 20px;
}

.contacto {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 20px;
    flex: 1;   
}

.telefono {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.mail {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.contacto a {
    text-decoration: none;
    color: white;
}

.contacto a:hover {
    text-decoration: underline;
}

.logotelefono {
    width: 36px;
    height: 36px;
}

.logocorreo {
    width: 36px;
    height: 29px;
}

.redes {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

@media screen and (max-width: 800px) {

    .container {
        margin: 10px;
        padding: 10px;
    }

    .logo {
        display: block;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        background: url(/img/logoChico.png) no-repeat;
        width: 450px;
        height: 187px;
        padding-left: 450px;
        margin-left: 20px;
    }
    .servicios {
        align-items: flex-end;
        padding: 10px;
        font-size: 1.2em;
    }

    .servicios span {
        line-height: 25px;
    }

    .footer {
        flex-direction: column;
        align-items: flex-end;
        gap: 20px;
        padding: 10px;
    }

    .contacto {
        display: flex;
        flex-direction: column;
        justify-content: start;
        gap: 10px;
        flex: 1;   
    }

    .logotelefono {
        width: 24px;
        height: 24px;
    }
    
    .logocorreo {
        width: 24px;
        height: 20px;
    }

}