* {
    box-sizing: border-box;
}

::-webkit-scrollbar {
    display: none;
}

html ,body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: Arial;
    background-color: #9E6975;
}


.navbar {
    background: linear-gradient(to right, #8CBBA3,#9E6975);
    display: flex;
    justify-content: space-between;
    height: auto;
}
.navbar .logo {
    width: 100px;
    padding: 20px 0 20px 20px;
}
.navbar .logo img {
    width: 100%;
    height: auto;
}

ul {
    display: flex;
    padding: 20px 20px 0 0;
}
li {
    list-style: none;
    font-size: 1em;
    margin-left: 10px;
}

a, a:visited {
    color: #FFF;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover {
    color: black;
}
  
/**** NAVBAR ****/
#icons {
cursor: pointer;
display: none;
}

.about {
    width: 500px;
    margin: 0 auto;
    margin-top: 25px;
    padding-top: 25px;
    padding-left: 50px;
    padding-right: 50px;
    border-radius: 20px;
    box-shadow: 0 0 10px #8CBBA3;
    letter-spacing: 0.2px;
    line-height: 1.5em;
    font-size: 1em;
    color: #000;
    background-color: #FFF;
}
.about h2 {
    font-style: italic;
                font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.about .qrcode {
    padding-top: 10px;
}
.about img {
    border-radius: 20px;
}

@keyframes slide {
    from {
        transform: translateX(0);
    } to {
        transform: translateX(-100%);
    }
}

.products {
    margin-top: 50px;
    text-align: center;
    display: inline-block;
    background: #FFF;
}
.texts {
    padding-top: 1px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 0.75em;
    color: #FFF;
    text-align: center;
}
.products .galerie {
    display: flex;
    overflow-x: scroll;
    padding-top: 25px;
    background: #FFF;
    animation: 240s slide infinite linear;
}
.products .galerie .image {
    margin-right: 25px;
}
.products .galerie .image img {
    margin-right: 25px;
    width: 300px;
}
.products .galerie .image:first-child {
    margin-left: 25px;
}

.contact {
    width: 500px;
    margin: 0 auto;
    margin-top: 25px;   
    margin-bottom: 25px;
    text-align: center;
    font-size: 1em;
    border: 1px solid #FFF;
    border-radius: 20px;
    padding-bottom: 25px;
}
.contact .title {
    color: #FFF;
}
.contact button {
    background: #441B24;
    width: 200px;
    border-radius: 10px;
    padding: 10px 20px;
    border: 0;
    box-shadow: 0 0 10px #8CBBA3;
}
.contact button:first-child {
    margin-right: 10px;
}
.contact button a {
    color: #FFF;
} 

.information {
    font-size: 0.9em;
    width: 500px;
    border: 1px solid #FFF;
    text-align: center;
    margin: 0 auto;
    margin-top: 25px;
    margin-bottom: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #FFF;
    border-radius: 20px;
}

.footer {
    padding: 10px 0;
    background: linear-gradient(to right, #8CBBA3,#9E6975);
    margin-top: 25px;
    color: #FFF;
    text-align: center;
}

@media (max-width: 650px) {
    #icons {
        display: block;
        padding: 35px 20px 0 0;
    }
    #icons:before {
        content: "\2630";
    }
    .active #icons:before {
        content: "\2715";
    }
    nav ul {
        font-size: 0.95em;
        position: fixed;
        left: -100%;
        top: 10%;
        flex-direction: column;
        background: linear-gradient(to right,#8CBBA3,#DC5C84); 
        width: 100%;
        text-align: center;
        transition: 0.25s;
        padding: 10px 10px 20px 0;
        margin-top: 4px;
    }
    nav li {
        padding: 10px 0;
        transition: background 0.2s;
    }

    nav li a:hover {
        color: #FFF;
    }
    nav li:hover {
        background: #383434;
    } 
    nav.active ul {
        left: 0;
    }

    .about {
        width: 75%;
        padding: 25px 50px;
        font-size: 0.95em;
    }

    .products .texts {
        font-size: 0.6em;
    }
    
    .products .galerie .image img {
        margin-right: 25px;
        width: 250px;
    }

    .contact {
        width: 75%;
    }
    .contact .buttons-links {
        display: flex;
        flex-direction: column;
    }

    .information {
        font-size: 0.9em;
        width: 90%;
        padding-left: 10px;
        padding-right: 10px;
        line-height: 1.5em;
    }

    .footer {
        font-size: 0.95em;
    }
}


@media (max-width: 450px) {
    nav {
        font-size: 0.8em;
    }
    .about {
        font-size: 0.8em;
        width: 90%;
    }

    .footer {
        font-size: 0.8em;
    }

    
    .products .galerie .image img {
        margin-right: 25px;
        width: 200px;
    }

    .contact {
        width: 90%;
    }
    .contact .buttons-links button:first-child {
        margin-bottom: 10px;
        margin-right: 0;
    }
}