body{
    font-family: "Segoe UI", Tahoma, Verdana, sans-serif;
    font-size: x-large;
    background-color: var(--background);
}

h1{
    font-size: xxx-large;
    text-align: center;
    color: var(--majeur);
}

h2{
    font-size: xx-large;
    color: var(--paraph);
}

h3{
    color: var(--majeur);
    margin-left: 10%;
    margin-right: 10%;
}

* {
    margin: 0;
    padding: 0;
}

.header-container{
    position: relative;
    width: 100%;
}

.header-image{
    z-index: 1;
    width: 100vw;
    height: auto;
    opacity: 0.29;
    margin: 0;
    padding: 0;
    display: block;
    object-fit: cover;
}

.header-container h1{
    font-size: xxx-large;
    text-align: center;
    color: var(--majeur);

    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;

    width: 100%;
    height: auto;
    overflow: hidden;

    transform: translate(-50%, -50%);
}

section{
    display: flex;
    gap: 8%;
    justify-content: center;
}

.boutons{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
}

.largebouton:hover, .midbouton:hover{
    background-color: var(--majeur);
}

.largebouton{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bouton);
    color: var(--paraph);
    font-size: xx-large;
    min-width: 470px;
    min-height: 80px;
    width: fit-content;
    padding: 0.5% 0.5%;

    border-radius: 20px;

    cursor: pointer;
    margin-bottom: 7%;
    margin-top: 15px;;
    text-align: center;

    box-shadow: 0 4px 8px var(--ombres);
}

.largebouton a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.largebouton i {
    font-size: 1em;
}

.largebouton p {
    display: inline;
    margin: 0;
}

section .midbouton{
    background-color: var(--bouton);
    color: var(--paraph);
    font-size: xx-large;
    min-width: fit-content;
    width: 200px;
    min-height: 50px;
    height: fit-content;
    padding: 10px 20px;

    border-radius: 20px;

    cursor: pointer;
    margin-bottom: 12px;
    text-align: center;

    box-shadow: 0 4px 6px var(--ombres);
}

.bienvenue h1{
    margin-top: 10%;
    margin-bottom: 10%;
}

#ouvrirBtn {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    cursor: pointer;
    display: block;
}

a{
    text-decoration: none;
}

a:hover{
    text-decoration: none;
}