/*
* Prefixed by:
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

html {
    scroll-behavior: smooth; /* Enables smooth scrolling */
}

body{
    margin: 0px;
}

#headContainer{
    height: 80vh;
    background-color: #f8f7f2;
}
#titleInnerContaianer{
    background-image: url('../images/WelcomeBack.jpg');
    background: blur(0.5);
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center;
    width: 100%;
    height: 450px;
    position: relative;
}
#headerInnnerContainer{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0px 35px;
    height: 180px;
    background-color: #ffffff;

}
.icon{
    width: 30px;
    height: 30px;
    -webkit-transition: -webkit-transform 600ms ease;
    transition: -webkit-transform 600ms ease;
    -o-transition: transform 600ms ease;
    transition: transform 600ms ease;
    transition: transform 600ms ease, -webkit-transform 600ms ease;
}
.icon:hover{
    -webkit-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
            transform: rotate(10deg);
    cursor: pointer;
}
.logo1{
    width: 300px;
    height: 250px;
    position: absolute;
    right: 40%;
}

#fancyFlavorsDiv{
    display: block;
    position: absolute;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
h1 , h2{
    margin: -30px;
    color: #f8f7f2;
    letter-spacing: 10px;
}
h1{
    font-size: 140px;
}
h2{
    font-size: 60px;
}