@charset "UTF-8";

* {
    text-decoration: none;
    color: #192773;
}

html {
    height: 100%;
    width: 100%;
}

body {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    background: rgb(255,247,219);
    background: -moz-linear-gradient(90deg, rgba(255,247,219,1) 0%, rgba(222,252,126,1) 50%, rgba(224,255,227,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(255,247,219,1) 0%, rgba(222,252,126,1) 50%, rgba(224,255,227,1) 100%);
    background: linear-gradient(90deg, rgba(255,247,219,1) 0%, rgba(222,252,126,1) 50%, rgba(224,255,227,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fff7db",endColorstr="#e0ffe3",GradientType=1);
}

#wrapper {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

#wrapper * {
    font-family: 'Berkshire Swash', cursive;

}

h1 {
    font-size: 3em;
    text-align: center;
}

a.menu:hover * {
    color: #ddeeca;
    padding: 10px;
    border-radius: 15px;
    background-color: #192773;
}

.nom {
    text-transform: uppercase;
}

.alert {
    color: red;
    animation: clignotement 0.5s linear infinite;
}

@keyframes clignotement {
    50% {
        opacity: 0;
    }
}

header {
    /*Positionnement*/
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    overflow: auto;
}

header.bandeau {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
}

header > img {
    height: 100%;
}

main {
    height: 80%;
    width: 100%;
    background-image: linear-gradient(0deg, #F6E8EC, #C3F5A5);
    /*Positionnement*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main.slider {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

form, form * {
    width: 100%;
    font-size: 1.2em;
}

form > div > * {
    margin: 1% 5%;
    width: auto;
}

@media screen and (max-width: 800px) {
    form > div > input {
        width: 100%;
        margin: 2% 0;
    }
}

@media screen and (min-width: 801px) {
    form > div > input {
        width: 75%;
    }
}

input {
    width: 100%;
    padding: 0;
    border: 0;
}

#fg,#fd {
    min-width: 10%;
    height: 100%;
    flex-grow: 1;
}

#conteneurVerticalImage {

    /*Positionnement*/
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;

    height: 100%;
    flex-grow: 0;
}

#conteneurVerticalImage > div {
    flex-grow: 1;
    width: 100%;
    height: inherit;
}

#conteneurImage {
    flex-grow: 0;
    width: 100%;
}

#conteneurImage img {
    height: 100%;
    width: 100%;
}

footer, header {
    width: 100%;
    transition: all 4s ease;
    height: 10%;
    background-image: linear-gradient(45deg, #F6E8EC,#C3F5A5);
}

footer:hover, header:hover {
    background-image: linear-gradient(135deg, #C3F5A5,#F6E8EC);
}

footer, footer * {
    /*Positionnement*/
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

#contact * {
    height: 100%;
}

@media screen and (max-width: 1280px) {
    #choixDefilement {
        width: 75%;
        padding: 0 5%;
    }

    #choixDefilement > * {
        margin: 0;
    }

    #informations {
        width: 25%;
    }
}

@media screen and (min-width: 1281px) {
    #choixDefilement {
        width: 25%;
        padding: 0 5%;
    }

    #choixDefilement > * {
        margin: 0 5%;
    }

    #informations {
        width: 75%;
    }
}

#boutonsRadios {
    width: 40%;
    /*Positionnement*/
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

#boutonsRadios > div {
    width: 100%;
}

#boutonsRadios > div > label {
    width: 90%;
    margin: 0;
}

#boutonsRadios > div > input {
    width: 10%;
}

#tempsSlider {
    width: 30%;
}
