html{
    scroll-behavior: smooth;
}

body{
    text-align: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h3, h4, p{
    margin: 0;
}

.navigation{
    background-color: #fff; 
    height: 100px; 
    z-index:1000; 
    position:fixed; 
    width: 100vw; 
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.navbutton{
    font-weight: bold;
    text-decoration: none;
    color: #363636;
    transition: 0.25s ease-in-out;
}

.navbutton:hover{
    /* color: #F88C00; */
    color: #6eb44e
}

.firstelement{
    padding-top: 110px;
}

.main-element{
    width: 90vw;
    max-width: 900px;
    border-radius: 5px;
}

.flex-column{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.flex-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.flex-wrap{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tilted{
    rotate: -1deg;
}

.retilted{
    rotate: 1deg;
}

.box{
    padding: 5px;
    border-radius: 5px;
    min-width: 50px;
    width: 200px;
}

.button{
    text-decoration: none;
    padding: 5px;
    border-radius: 5px;
    transition: 0.25s ease-in-out;
    outline: none;
    border: none;
}

.article{
    text-align: left !important;
}

.product{
    /* width: 300px; */
    width: 45vw;
    max-width: 300px;
    overflow: hidden;
    border-radius: 5px;
    background-color: #fff;
    padding-bottom: 10px;
    /* box-shadow: 3px 3px 5px #363636; */
}

.productimg{
    height: 300px; 
    height: 45vw;
    max-height: 300px;
    width: 300px; 
    width: 45vw;
    max-width: 300px;
    overflow: hidden; 
    margin-bottom: 10px
}

.product img{
    height: 45vw;
    max-height: 300px;
    width: 45vw;
    max-width: 300px;
    object-fit: cover;
    overflow: hidden;
    transition: 0.25s ease-in-out;
}

.product:hover img{
    transform: scale(1.025,1.025);
}

.product a{
    text-decoration: none;
    color: #363636;
}

.productname{
    display: block;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
}

.link{
    text-decoration: underline;
}

.input{
    border-radius: 5px;
    padding: 10px;
    width: 90vw;
    max-width: 250px;
    font-family: Quicksand;
    -ms-box-sizing:content-box;
    -moz-box-sizing:content-box;
    -webkit-box-sizing:content-box; 
    box-sizing:content-box;
}

.input:focus{
    outline: none;

}

.faded{
    opacity: 0;
    transition: opacity 0.25s ease-in;
}

.faded[visible]{
    opacity: 1;
}

.cart-item{
    width: 90vw; 
    max-width: 400px;
    align-items: center;
    padding: 5px;
    background-color: #fff;
    border-radius: 5px;
}

.cart-item img{
    max-width: 125px;
    max-height: 125px;
    border-radius: 5px;
}

.mobilebutton{
    position: fixed;
    text-decoration: none;
    color: #363636;
    padding: 10px;
    border-radius: 5px;
    background-color: #fff;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.2);
    bottom: 10px; 
    right: 10px;
}

.mobilebutton img {
    height: 35px;
}

.valuebutton{
    height: 40px;
    width: 40px;
    border-radius: 5px;
    color: #363636;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

@media screen and (max-width: 650px) {
    .mobilebutton p{
        display: none;
    }
}