@import url('https://fonts.googleapis.com/css2?family=Poppins: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');

*{
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
}

body{
    background: linear-gradient(90deg, rgb(119, 96, 33) 50%, rgb(12, 12, 12) 50%);
}

section{
    padding: 10px 8%;
}

.tittle{
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.tittle > h1{
    color: #fff;
    font-size: 40px;
    font-weight: 400;
}

footer{
    background-color: rgb(119, 96, 33);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 10px;
}

footer > hr{
    width: 100%;
}

footer > p{
    padding: 7px;
    color: yellow;
    font-size: 15px;
    font-weight: 200;
}