*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    color: white;
}

body{
    background-color: rgb(35, 35, 35);
    width: 100vw;
    min-height: 100dvh;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header{
    background-color: #1e1e1e;
    color: white;
    padding: 20px;
    text-align: center;
    min-height: 100px;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}




main{
    max-width: 1200px;
    width: 100vw;
    min-height: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
   

}
footer{
    padding: 20px;
    background-color: #1e1e1e;
    width: 100vw;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
}

iframe{
    border-radius: 20px;
}

#tiktok-embed{
    align-items: center;
}


section {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    width: 100%;
    height: max-content;
}

section p{
    width: 90%;
    max-width: 768px;
}
form p{
    width: 80%;
    text-align: right;
}

li{
    list-style-type: none;
    margin-bottom: 5px;
}

ul{
    width: 90%;
    max-width   : 768px;
    padding: 10px 0px;
  
}

h4{
    font-weight: 500;
    width: 90%;
    max-width: 768px;
    font-size: 1.1rem;
    line-height: 1.3rem;
    
}

form{
    display: flex;
    flex-direction: column;
    width: 95%;
    height: max-content;
    align-items: center;
    gap: 10px;
    
}
form input, form textarea, form button, form select{
    width: 80%;
    height: 30px;
    background-color: transparent;
    border: 2px solid white;
    outline: none;
    cursor: text;
}

button{
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    outline: none;
    background-color: rgb(18, 177, 47);
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    width: 80%;
    max-width: 400px;
    font-size: 1.2rem;
}
button:hover{
    background-color: white;
    color: black;
}
button:active{
    background-color: transparent;
    color: black;
}

form label{
    width: 80%;
    text-align: left;
}

form textarea{
    height: 200px;

    resize: none;
}

form input:invalid, form textarea:invalid{
    border-color: red;
}

#reseaux{
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    max-width: 100dvw;
    
    flex-wrap: wrap;
    
}

#reseaux a{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    padding: 10px;
    text-decoration: none;
    margin: auto;
}
#reseaux a p{
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
}
