@import url('https://fonts.googleapis.com/css2?family=Cedarville+Cursive&display=swap');

* {
    box-sizing: border-box;
    text-wrap: balance;
}

html {
    --max-content-width: 1000px;
    --max-navbar-width: 1200px;
    --navbar-height: 70px;
    scrollbar-width: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #ddd6f3, #f4e2d8);
}

.page-title {
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    text-wrap: balance;
    margin-bottom: 20px;
}

.page-title > div {
    padding: 0 200px;
    margin-top: 20px;
    background: red;
    border-radius: 20px;
    background: linear-gradient(to right, #cc2b5e, #753a88);
    display: flex;
    justify-content: center;
}

.page-title > div > h1 {
    color: #ddd;
    font-family: "Cedarville Cursive", serif;
    font-size: 48px;
    margin: 20px auto;
    text-align: center;
}

.content {
    flex: 1;
    width: min(calc(90% - 0px), 1000px);
    margin: auto;
    height: 100%;
    justify-content: center;
}

@media (max-width: 720px) {
    .page-title > div {
        margin-top: 0;
        padding: 0;
        width: 100%;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
}

.bouton {
    font-weight: 700;
    background: linear-gradient(to right, rgba(204, 43, 94, 0.2), rgba(116, 58, 135, 0.2));
    color: black;
    padding: 15px;
    border: #c62c5f 2px solid;
    border-radius: 15px;
    width: 200px;
    cursor: pointer;
    font-size: 16px;
    margin: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.bouton-primary {
    font-weight: 700;
    background: linear-gradient(to right, rgba(204, 43, 94, 1), rgba(116, 58, 135, 1));
    border: none;
    color: #ddd;

}

.bouton:hover {
    box-shadow: rgba(204, 43, 94, 1) 0 0 5px;
}
