html {
    scroll-behavior: smooth;
   }

.body {
    background-color: bisque;
}

#content-slider {
    margin-left: -10px;
    margin-right: -10px;
    overflow: hidden;
    padding-top: 60px;
    }
    
@keyframes slider {
    0% { left: 0; }
    30% { left: 0; }
    33% { left: -100%; }
    63% { left: -100%; }
    66% { left: -200%; }
    95% { left: -200%; }
    100% { left: 0; }
    }

#content-slider figure {
    width:300%;
    position: relative;
    margin: 0;
    left: 0;
    animation: 17s slider infinite;
    white-space: nowrap;
    }
    
#content-slider figure img {
    width: 33.33%;
    height : 700px;
    float: left;
    }

.height-100vh {
    height: 70vh;
    display: flex;           /* establish flex container */
    flex-direction: column;  /* stack flex items vertically */
    position: relative;      /* establish nearest positioned ancenstor for absolute positioning */
    }

.slider-text1 {
    position: absolute;
    left: 25%;
    top: 70%;
    transform: translate(-50%, -50%);
    font-weight: normal;
    font-size: 27px;
    font-family: 'Sigmar', cursive;
    color: white;
    white-space: nowrap;
    }    

.slider-text2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: normal;
    font-size: 27px;
    font-family: 'Sigmar', cursive;
    color: white;
    white-space: nowrap;
    }

.slider-text3 {
    position: absolute;
    left: 77%;
    top: 48%;
    transform: translate(-50%, -50%);
    font-weight: normal;
    font-size: 27px;
    font-family: 'Sigmar', cursive;
    color: white;
    white-space: nowrap;
    }

.center-aligned {
    display: flex;
    align-items: center;
    justify-content: center;
    }

.home-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
    font-family: 'Sigmar', cursive;
}

.content-home-info {
    display: flex;
    flex: 3;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    column-gap: 7px;
    margin-bottom: 30px;
}

.home-info {
    display: flex;
    flex: 4;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 200px;
    padding-top: 30px;
    padding-bottom: 40px;
    margin-top: 6px;
    border-radius: 8px;
    background-color: rgba(214, 224, 219, 0);  
    backdrop-filter: blur(5px);
    transition-duration: 0.15s;

}

.info-iconstyle {
    height: 70px;
    padding-bottom: 30px;
}

.info-iconstyle:hover {
    color: white;
}

.info-title {
    font-size: x-large;
    font-family: 'Lato', sans-serif;
    
}

.info-statement {
    padding-top: 30px;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    font-family: 'Lato', sans-serif;
}

.info-link{
    margin-top: 50px;
    border-width: 2px;
    border-color: black;
    border-style: solid;
    padding: 15px;
    font-family: 'Lato', sans-serif;
}

.info-link:hover{
    background-color: rgb(2, 48, 32);
    color: white;
    cursor: pointer;
    transition-duration: 0.15s;
}

.info-link:active{
    opacity: 0.7;
}

.aboutus {
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 30px;
    margin-top: 150px;
    padding-top:40px;
    height: 650px;
    font-family: 'Sigmar', cursive;
    background: linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,.5)), url(/images/home/about-us-background.jpg);
    background: no-repeat center center cover;
    background-size: auto;
    }

.aboutus-content {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    font-size: x-large;
    font-family: 'Lato', sans-serif;
}

.products-content{
    padding-top: 80px; 
    display: flex;
    flex-direction: column;
    flex: 2;
}

.products-title {
    display: flex;
    justify-content: center;
    height: 80px;
    font-size: 60px;
    font-family: 'Sigmar', cursive;
    padding-bottom: 70px;

}

.product-info {
    display: flex;
    flex-direction: column;
    flex: 3;
    row-gap: 90px;
}

.product-fruitfly {
    margin-left: 70px;
    display: flex;
    flex: 2;
    flex-direction: row;
    justify-content: center;
    column-gap: 70px;
}

.product-desc{
    padding-top: 100px;
    width: 50%;
    margin-left: 50px;
}

.product-desc-question{
    font-family: 'Mulish', sans-serif;
    padding-bottom: 10px;
}

.product-desc-answer{
    font-family: 'Lato', sans-serif;
}

.img-fruitfly{
    height: 300px;
    box-shadow: 12px 29px 81px 0px rgba(0,0,0,0.75);
    border-radius: 20px;
    width: 400px;
    margin-right: 100px;
}

.product-proteinbait {
    display: flex;
    flex: 2;
    flex-direction: row;
    height: 400px; 
    justify-content: space-around;
}

.img-proteinbait {
    height: 300px;
    box-shadow: 12px 29px 81px 0px rgba(0,0,0,0.75);
    border-radius: 20px;
    width: 360px;
}

.product-howto{
    display: flex;
    flex: 2;
    flex-direction: row;
    height: 400px; 
    justify-content: space-around;
}

.img-howto{
    height: 300px;
    box-shadow: 12px 29px 81px 0px rgba(0,0,0,0.75);
    border-radius: 20px;
}


