:root {
    --primary: #303030;
    --secondary: #FFFFFF;
    --accentLight: #0eb1b1;
    --accentDark: #03857e;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--secondary);
    width: 100dvw;
    height: 100dvh;
    font-size: 10px;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    font-family: 'Questrial', sans-serif;
}

header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 10dvh;
    padding-left: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
}


.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48
}

.accentBlue {
    color: var(--accentDark);
}

#cover {
    width: 100dvw;
    height: 100dvh;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 100%;
}
 
#cover img {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#coverTxt {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    text-align: center;
}

#coverTxt h1 {
    font-size: 3.5rem;
    margin: 1rem;
}

#coverTxt p {
    font-size: 2rem;
}

#servicios {
    width: 100dvw;
    height: 100dvh;
    margin-top: 6rem;
    display: grid;
    grid-template-columns: 1;
    grid-template-rows: 70% 30%;
}

#fotosServicios {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

#fotosServicios img {
    width: 25dvw;
    height: 65dvh;
    object-fit: cover;
    border-radius: 0.5rem;
}

#textoServicios {
    grid-column: 1;
    grid-row: 2;
    font-size: 2rem;
    padding: 3rem 12rem;
    text-align: center;
}

#contacto {
    width: 100dvw;
    height: 60dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#contacto h3 {
    font-size: 3rem;
    font-weight: 600;
    color: var(--accentDark);
    padding: 2rem 12rem;
    text-align: center;
}

#contacto p {
    font-size: 2rem;
}

#contacto a {
    text-decoration: none;
    color: inherit;
}

#contacto a:hover {
    text-decoration: none;
    font-weight: 600;
}

@media only screen and (max-width: 700px) {

    #cover img {
        grid-column: 1/3;
        grid-row: 1;
    }

    #coverTxt {
        grid-column: 1/3;
        grid-row: 1;
        z-index: 30;
        color: var(--secondary);
    }

    #cover .accentBlue {
        color: var(--secondary);
    }

    #servicios {
        height: 120dvh;
        margin-top: 3rem;
    }

    #fotosServicios {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        gap: 0.5rem;
    }

    #fotosServicios img {
        width: 85dvw;
        height: 25dvh;
        object-fit: cover;
        border-radius: 0.5rem;
    }

    #textoServicios {
        font-size: 1.5rem;
        padding: 1rem;
    }

    #contacto {
        width: 100dvw;
        height: 80dvh;
    }

    #contacto h3 {
        font-size: 2.5rem;
        padding: 2rem;
    }

    #contacto p {
        font-size: 1.5rem;
    }

}