body {
    background-color: #34495E;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Work Sans', sans-serif;
    font-weight: 900;
}
#logo {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.0);
    padding: 10px 10px;
    text-align: center;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
}
.fancy {
    display: inline-block;
    font-size: 90px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    white-space: nowrap;
    &:after {
        --deco-height: 0.3125em;
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: calc(var(--deco-height) * -0.625);
        height: var(--deco-height);
        background-image: url("data:image/svg+xml,%3Csvg width='100' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M-17 30.5C-1 22 72-4 54 13 37.9 28.2-2.5 57.5 16 55.5s72-29 104-40' stroke='%2300FDCF' stroke-width='10'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h100v64H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
        background-size: auto 100%;
        background-repeat: 4;
        background-position: 0em;
    }
}
.global-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin-top: 6%;
    padding: 20px;
    box-sizing: border-box;
}
.form-container {
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 3%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 500px;
    box-sizing: border-box;
}
.form-container label {
    display: block;
    margin-bottom: 8px;
}
.form-container input, .form-container select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
}
.form-container button {
    width: 100%;
    padding: 10px;
    background-color: #00FDCF;
    border: none;
    border-radius: 5px;
    color: #34495E;
    font-size: 18px;
    cursor: pointer;
}
.form-container button:hover {
    background-color: #00b3a7;
}
.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.form-group label {
    width: 150px;
    margin-right: 10px;
}
.form-group input[type="checkbox"] {
    margin: 0;
}
.boutonVert {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 45px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition-duration: .3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background-color: rgb(5, 65, 65);
    margin-bottom: 5%;
    flex: 0 1 calc(33.333% - 50px);
    box-sizing: border-box;
}
.boutonVert img {
    max-width: 100%;
}
.button-holder {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
::-webkit-scrollbar {
    display: none;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
@media (max-width: 700px) {
    .fancy {
        font-size: 12.5vw;
    }
    #logo {
        position: absolute;
    }
    table {
        width: 100%;
        table-layout: auto;
    }
    th, td {
        font-size: 3vw;
        padding: 10px;
    }
    .table-container {
        width: 100%;
        overflow-x: auto;
        margin-top: 150px;
    }
    .button-holder {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .boutonVert {
        width: 100%;
        height: auto;
        padding: 10px;
        margin-bottom: 10px;
    }
    .accueil {
        width: 210px;
    }
    textarea {
        width: 100%;
    }
}