/* Styles généraux déjà inclus */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;500;700&display=swap');

* {
    color: #11468F;
}

body {
    padding-top: 100px;
}

.first, .options h1 {
    font-family: 'Poppins';
    text-transform: uppercase;
    text-align: center;
}

body h2 {
    font-family: 'Montserrat';
}

.disclaimer {
    text-align: center;
    padding-bottom: 3em;
}

.options {
    padding-bottom: 4em;
}

.box {
    max-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3em;
}

.containers {
    width: 100%;
    padding-top: 2em;
    padding-left: 3em;
    padding-right: 3em;
    text-align: center;

}
.title {
    margin-right: 20px;
}

.button {
    margin-right: 20px;
    padding: 1em 2em;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 5px;
    text-transform: uppercase;
    cursor: pointer;
    color: #11468F;
    transition: all 1000ms;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    outline: 2px solid #11468F;
}

button:hover {
    color: #ffffff;
    transform: scale(1.1);
    outline: 2px solid #11468F;
    box-shadow: 4px 5px 17px -4px #11468F;
}

button::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #11468F;
    transform: skewX(45deg);
    z-index: -1;
    transition: width 1000ms;
}

button:hover::before {
    width: 250%;
}


@media (max-width: 1024px) {
    .disclaimer {
        padding-left: 3em;
        padding-right: 3em;
    }
    .box {
        display: flex;
        flex-direction: column;
    }
    .containers {
        width:90%;
    }
}

@media (max-width: 768px) {
    .disclaimer {
        padding-left: 3em;
        padding-right: 3em;
    }
    .box {
        display: flex;
        flex-direction: column;
    }
    .containers {
        width: 100%;
        margin: 0;
        
        padding-left: 10px;
        margin-right: 100px;
    }
}
