body, body *{
    margin: 0;
    padding: 0;
}

ul, ol, li{
    list-style: none;
    padding: 0;
    margin: 0;
}

form{
    display: flex;
    flex-direction: column;
}

body{
    background-image: url("./assets/images/background-image.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    min-width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Poppins';
    color: #ffffff;
    text-shadow: 4px 4px 10px #352f2f;
    font-size: 16px;
}

header, main, footer{
    margin-left: 100px;
}
.main-title{
    font-size: 50px;
    margin: 50px 0;
}
.second-title{
    font-size: 35px;
}

.section-loud, .section-ajouter{
    background-color: #181717c2;
    width: fit-content;
    padding: 30px 50px 40px 50px;
    border-radius: 30px;
}

.section-ajouter{
    margin-top: 50px;
}

.section-ajouter input{
    border: 1px solid black;
    background-color: #ffffff;
    border-radius: 2px;
}

.section-ajouter button{
    border: none;
    background-color: #ffffff;
    border-radius: 20px;
    color: #000000;
    width: fit-content;
    height: fit-content;
    padding: 10px 30px;
    margin-top: 20px;
}

footer small{
    display: block;
    padding: 80px 0 10px 0;
}