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


html{

    scroll-behavior:smooth;

}

body{

    font-family:var(--font-family);
    background:var(--color-bg);
    color:var(--color-white);

}

.container{

    width:min(92%,var(--container));
    margin:auto;

}

section{

    padding:100px 0;

}

/* Titulo principal compartido por todas las paginas de proyectos */
.house-content h1{

    font-weight:900;

}
