@import url('https://fonts.googleapis.com/css2?family=Handlee&family=Lato:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hurricane&display=swap');

html{
    margin: 0;
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    display: grid;
    margin: 0;
    color: #444764;
}

.store-button {
    background-color: #279bab; /* Green */
    border: none;
    border-radius: 1000px;
    color: white;
    padding: 15px 32px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
    position: relative;
    height: 60px;
    cursor: pointer;
    box-shadow: 3px 8px 15px rgba(0, 0, 0, 0.1);
}

.button-img{
    position:absolute; top: 50%; transform: translateY(-50%); width: 35px;
}

.button-span{
    padding: 15px 0px 15px 45px;
}

#home-bar{
    grid-area: 1 / 1;
    margin-top: 20px;
    width: auto;
    height: 70px;
    border-bottom: 0.5px solid #CDDDE3;
}

#img-home-bar{
    width: 50px;
    height: 50px;
    float:left;
    margin-left: 35px;
    border-radius: 20px;
}

#text-home-bar{
    padding: 15px;
    margin: 0px 0px 0px 80px;
    font-size: 1.4rem;
    color: #444764;
}

#banner{
    margin-top: 40px;
    grid-area: 1 / 1;
    height: 100vh;
    width: auto;
    display: flex;
}

#banner-text{
    width: 50%;
    padding: 35px;
    margin-left: 30px;
    font-family: 'Handlee', cursive;
    font-size: 2.2rem;
    color: #444764;
}

#banner-titulo{
    margin: 100px 0px 40px 0px;
}

#store-section{
    margin-top: 5px;
    margin: auto;
}

#banner-img{
    width: 50%;
    padding: 40px;
}

#cell-img{
    margin: 45px 0px 20px 0px;
    height: 400px;
}

#divider-animat{
    color: #444764;
    animation-name: example;
    animation-duration: 5s; text-align:center; font-size: 20px; font-family: 'Hurricane', cursive;
}

@keyframes example {
    from {color: white;}
    to {color: #444764;}
}

#content{
    margin: auto;
    font-size: 1.4rem;
}

.content-div{
    display: flex;
    margin: auto;
}

.content-text{
    width: 300px;
    text-align: center;
    margin: auto;
    font-size: 1.9rem;
}

.content-img{
    width: 50%;
    height: 300px;
    margin: 20px;
}

#mandala-lunar-text{
    margin: auto;
    font-size: 1.6rem;
    width: auto;
    text-align: center;
}


#app-content{

}

#app-text{
    margin: auto;
    font-size: 1.25rem;
    width: 80%;
    text-align: center;
}

#app-features {
    background: #FBF3F3;
    display: flex;
    height: 350px;
    margin-top: 50px;
    
}


#features-texts{
    width: 50%;
    margin: auto;
    margin-right: 40px;
    margin-top: 10px;
}

#app-title{
    font-family: 'Handlee', cursive;
    font-size: 1.9rem;
}

.app-func{
    list-style-type:none;
    text-align: center;
    font-size: 1.6rem;
    margin-top: 30px;
    padding: 0;
}

.app-img-div{
    margin: auto;
    margin-left: 0px;
}

#app-img{
    transform: translateY(-25px);
    height: 400px;
}

footer{
    background-color: #fdf5f4;
    height: 150px;
    margin-top: 100px;
    text-align: center;
    padding-top: 40px;
}

.social-media-section{
    
}

.insta-icon{
    display: block;
    margin: auto;
    margin-top: 40px;
    text-decoration: none;
}

.insta-icon img{
    width: 35px;
    transform: translateY(30%)
}

.insta-icon span{
    padding: 15px 0px 15px 10px;
}


@media screen and (max-width:600px){
    html{
        font-size: 12px;
    }

    #banner{
        margin-top: 0px;
        height: 100%;
        display: block;
    }

    #banner-text{
        width: 80%;
    }

    #banner-img{
        padding: 20px;
    }

    #content{
        padding: 5px;
    }

    #app-features{
        display: block;
        height: 300px;
    }

    #features-texts{
        width: 80%;
        margin: auto;
    }

    #app-title{
        padding-top: 20px;
    }

    .app-img-div{
        display: none;
    }


}