@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html{
    font-size: 10px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body{
    height: fit-content;
    background-color: var(--white);
    min-height: 100%;
}

:root{
    --grey: #d3d3d3;
    --white: #ffffff;
}

section{
    padding: 20px 0;
}
@media only screen and (min-width: 768px){
    section{
        padding: 30px 0;
    }
}

.container{
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

h1, p{
    font-family: "Fira Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h1{
    font-size: 3rem;
}

p{
    font-size: 1.8rem;
}

/* a{
    display: inline-block;
    text-decoration: none;
} */