@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* CONTAINER */

.content-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px 0;
    padding: 10px 15%;
}

@media screen and (max-width: 700px) {
    .content-container {
        padding: 10px 5%;
    }
}

/* TITRE */

.titre {
    text-align: center;
}

.titre h1 {
    font-size: 50px;
}

/* TEXT */

.text {

}

.text p {
    font-size: 25px;
}

/* BUTTON */

.button {
    display: flex;
    justify-content: center;
}

.button button {
    padding: 10px;
    background-color: black;
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px;
}