@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700&family=Noto+Sans:wght@600&display=swap');

:root{
    --light-grey: #F5F5F5;
    --primary-color: #3B60CD;
    --secondary-color: #F4BC54;
    --light-orange: #FDF5E6;
    --light-purple: #F0F0EE;
    --light-blue:#ECF0FC;
    --sky-blue: #A8BAF1;
    --text-color: #212121;
    --dark-grey: #F0F0EE;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans', sans-serif;
    font-family: 'Lato', sans-serif;
}

body{
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

/* buttons styles */

.main_btn{
    color: #fff;
    background: var(--primary-color);
    display: inline-block;
    padding: 15px 40px;
    flex-shrink: 0;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
}
.primary_btn{
    color: #fff;
    background: var(--primary-color);

}
.secondary_btn{
    color: #000;
    background: var(--secondary-color);
}
.btn_lg{
    width: 100%;
    font-size: 40px;
    font-weight: 500;
}

.playstore-btn{
    color: #fff;
    background: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 154px;
    padding: 10px 15px;
    margin: 30px auto;
    text-decoration: none;
    border-radius: 5px;
}


.playstore-btn img {
    max-width: 30px;
}
.playstore-btn p{
    font-size: 12px;
    text-align: left;
    margin-bottom: 0;
}
.playstore-btn span{
    font-size: 16px;
}
/* larger playstore button */
.playstore-lg{
    width: 200px;
    height: 65px;
    padding: 30px 10px;
    gap: 20px;
}
.playstore-lg img {
    max-width: 50px;
}
.playstore-lg p{
    font-size: 14px;
    text-align: left;
}
.playstore-btn lg{
    font-size: 20px;
}
.plain-btn{
    color: #000;
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    padding: 15px;
    font-size: 48px;
    /* width: 33%; */
    display: block;
    margin: 0 auto;

}

/* animation */


.float{
    animation: float 3s ease-in-out infinite;
}
.float1{
  animation-delay: 0.1s;
}
.float2{
  animation-delay: 0.2s; 
}
.float3{
  animation-delay: 0.3s; 
}
.float4{
  animation-delay: 0.4s; 
}
.float5{
  animation-delay: 0.5s; 
}

@keyframes float{
    20%, 50%, 80%, to{
        transform:translateY(0)
    }
    40%{
        transform:translateY(-20px)
    }
    65%{
        transform:translateY(-15px)
    }
    85%{
        transform:translateY(-5px)
    }
}
@media only screen and (max-width: 1500px){
    .btn_lg{
        font-size: 30px;
        padding: 15px 20px;
    }
}
@media only screen and (max-width: 1125px){
    .btn_lg{
        font-size: 24px;
    }
}
@media only screen and (max-width: 960px){
    .plain-btn{
        width:300px;
    }
    .btn_lg{
        font-size: 20px;
    }
}
@media only screen and (max-width: 756px){
    .btn_lg{
        font-size: 30px;
    }
    .btn_lg{
        font-size: 26px;
    }
}
@media only screen and (max-width: 590px){
    .plain-btn{
        width:225px;
        font-size: 28px;
    }
    .btn_lg{
        font-size: 26px;
    }
}
@media only screen and (max-width: 425px){
    .btn_lg{
        font-size: 20px;
    }
}
@media only screen and (max-width: 352px){
    .btn_lg{
        font-size: 16px;
    }
}