body{
    background-image: url("images/lever_de_soleil_pyro_1.png");
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000000;
    font-family: "Oxanium", sans-serif;
    margin: 0px;
    padding: 1vh 1vw;
}

.bandeau {
    padding: 0px;
    width: 100%;
    height: 10vh;
    background-color: blue;
    background-position: 0px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2vh;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0);
}

.paragraphes {
    background-color: #2e2e2e;
    border-radius: 20px;
    margin-top: 40vh;
    color: #ffffff;
}

.acceuil {
    text-align: center;
    padding-top: 10px;
}

.texte {
    padding-left: 10vw;
    padding-bottom: 10vh;
    padding-right: 10vw;
    text-align: center;
}

.link {
    color: aqua;
    text-decoration: none;
}

.container {
    margin-top: 10px;
    display: grid;
    flex-direction: wrap;
    gap: 2vw;
    justify-content: center;
    grid-template-columns: 0.5fr 0.5fr;
}

.box {
    background-color: #001b67;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

@media (max-aspect-ratio: 9/10) { 
    .container {
        grid-template-columns: 1fr;
    }
}

.box_title {
    color: rgb(255, 0, 0);
    font-size: large;
    font-weight: bolder;
}

.disclaimer {
    color: rgb(255, 0, 0);
    font-size: small;
}

