:root {
    --whitesmoke: whitesmoke;
    --red: #FE2126;
    --black: #1b1b1bd0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: 'Sen', sans-serif;
    scroll-behavior: smooth;
}

main {
    width: 100%;
    height: 80vh;
    background-color: var(--whitesmoke);
}

/* NAV */

nav {
    width: 100%;
    height: 10vh;
    background: var(--whitesmoke);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--red);
}

.logo img {
    height: 50px;
    width: 130px;
}

/* ABOUT */

.about-container {
    text-align: center;
    display: flex;
    width: 100%;
    flex-direction: column;
    overflow: hidden;
}

.about-title {
    width: 100%;
    text-align: center;
    margin: 15px;
    font-size: 35px;
    font-weight: 500;
    color: var(--red);
}

.about-content {
    flex-direction: row;
    width: 75%;
    height: auto;
    margin: 0 auto;
    background-color: #fff;
    display: flex;

}

.about-img {
    width: 50%;
}

.about-img img {
    width: 100%;
    height: 100%;
}

.about-text {
    width: 50%;
    display: inherit;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
    padding: 10px;
}

.about-contact {
    margin: 9px;
}


.infoOuverture {
    display: flex;
    flex-direction: column;
}

/* FOOTER */

#footer {
    height: 10vh;
    background-color: black;
    display: flex;
    align-items: center;
}

.footer-bottom {
    background: #000;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    color: #fff;
}

.footer-bottom span {
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.footer-content li {
    padding: 0 10px 0 10px;
    transition: all .4s ease;
}

.footer-content li:hover {
    color: #FE2126;
    cursor: pointer;
}

/* MODAL */

.linkLegalMention {
    color: #fff;
    transition: all .4s ease;
}

.linkLegalMention:hover {
    color: #FE2126;
    cursor: pointer;
}

.titleLegalMention, .subtitleLegalMention {
    padding: 5px;
    color: #FE2126;
    text-transform: uppercase;
}

.textLegalMention {
    padding: 7px;
    text-align: justify;
    text-justify: distribute;
}

.legalMention-container {
    background-color: whitesmoke;
}

.linkWebsite {
    color: #FE2126;
}

.shop-btn {
    border-radius: 5px;
    color: var(--whitesmoke);
    width: content;
    height: 100px;
    font-size: 35px;
    background-color: var(--red);
    padding: 5px;
    cursor: pointer;
}

/* COOKIES */

#myCookieConsent {
    z-index: 999;
    min-height: 20px;
    font-family: OpenSans, arial, "sans-serif";
    padding: 10px 20px;
    background: rgba(0,0,0,0.6);
    overflow: hidden;
    position: fixed;
    color: #FFF;
    bottom: 0px;
    right: 10px;
    display: none;
    left: 0;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    width: 100%;
}
#myCookieConsent div {
    padding: 5px 0 0;
}
#myCookieConsent a {
    color: #ffba55;
    display: inline-block;
    padding: 0 10px;
}
#myCookieConsent a:hover {
	color: #fda016;
    cursor: pointer;
}
#myCookieConsent a#cookieButton {
    display: inline-block;
    color: #000000;
    font-size: 1.1em;
	background: #ffba55;
    text-decoration: none;
    cursor: pointer;
    padding: 2px 20px;
    border-radius: 20px;
}
#myCookieConsent a#cookieButton:hover {
    background: #fda016;
	color: #000;
}

@media (max-width: 990px) {
    
    main {
        height: auto;
    }
    .about-content {
        width: 75%;
        flex-direction: column;
    }

    .about-img,
    .about-text {
        width: 100%;
    }

    .about-text {
        font-size: 15px;
    }

    .about-title {
        margin: 5px;
    }
    
    .shop-btn {
        font-size: 25px;
    }
}

@media (max-width: 600px) {
    main {
        height: 80vh;
    }
    .about-img {
        display: none;
    }
    
    .about-text {
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-content li {
        padding: 5px 0 5px 0;
    }
    
    .shop-btn {
        font-size: 15px;
    }
}