
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
section{
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    color: white;
}
#section1{
    background-image: url("./images/section1.jpg");
}
#section2{
    background-image: url("./images/section2.jpg");
}
#section3{
    background-image: url("./images/section3.jpg");
}
#section4{
    background-image: url("./images/section4.jpg");
}
h1{
    font-size: 3rem;
    color: rgb(230, 224, 224);
    text-shadow: 2px 2px rgb(85, 84, 84);
}
p{
    max-width: 300px;
    text-align: justify;
    color: rgb(27, 27, 27);
    font-weight: bold;
    font-size: 1.2rem;
}