﻿body {
    margin: 0;
}

.header {
    width: 100%;
    height: 64px;
    display: inline-flex;
    background-color: #ffffff;
}

.logo {
    width: 108px;
    height: 100%;
    display: inline-flex;
}

.logoImg {
    width: 75px;
    height: 47px;
    margin: auto 0px auto 32px;
}

.titre {
    width: calc(100% - 108px);
    display: inline-flex;
    height: 100%;
}


.textTitre {
    font-size: 21px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    /*letter-spacing: 5px;*/
    color: #000;
    margin: auto 0 auto 20px;
    font-family: OpelSans;
    text-transform: uppercase;
}

.content {
    width: 100%;
    height: 100vh;
    position: relative;
    top: 0;
    bottom: 0;
    display: inline-flex;
}

.boutons {
    width: 1000px;
    height: 370px;
    margin: auto;
    display: flex;
}

.divBtn {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.oneBtn {
    width: 100%;
}

.twoBtn {
    width: 50%;
}

.boutton {
    width: 450px;
    height: 250px;
    margin: auto;
    padding: 16px 24px;
    color: #ffffff;
    display: block;
    background-color: rgba(62, 59, 56, 0.6);
    box-shadow: 0px 0px 8px 0px black;
    font-size: 25px;
    cursor: pointer;
    font-family: OpelSans;
}

    .boutton:hover {
        outline: 4px solid #f7d900;
        background-color: white;
        color: #000000;
        border: none;
    }

@media screen and (max-width: 1000px) {
    .boutons {
        width: 100%;
    }

    .boutton {
        width: 90%;
        height: 80%;
        font-size: 20px;
    }
}

@media screen and (max-width: 660px) {


    .textTitre {
        font-size: 18px;
        letter-spacing: 3.3px;
    }

    .boutton {
        font-size: 16px;
    }
}

@media screen and (max-width: 560px) {
    .boutons {
        display: flow-root;
    }

    .divBtn {
        width: 100%;
        height: 50%;
    }

    .textTitre {
        font-size: 16px;
    }

    .boutton {
        font-size: 14px;
    }
}
