@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;500;600;700&display=swap');

*{
    box-sizing: border-box;
}
body{
    font-family: 'Source Code Pro', monospace;
}
p, h1, h2, h3{
    padding: 0;
    margin: 0;
}
a{
    text-decoration: none;
}
.container{
    max-width: 1180px;
    margin: 0 auto;
}
.general-bg{
    background: linear-gradient(107.64deg, #91435E 1.3%, #E570FB 98.97%);
}

/* main section */

.main__section{
    padding-bottom: 0px;
}
.header__wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}
.header-link{
    font-family: 'Source Code Pro';
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    color: #FFFFFF;
    background-image: linear-gradient(#FFFFFF, #FFFFFF);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .5s;
    padding-bottom: 5px;
}
.header-link:hover{
    background-size: 100% 2px;
}
.googleplay-link{
    margin-right: 40px;
}
.main__section-btns{
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 30px;
}
.main-link-img{
    width: 300px;
}
.appstore-btn{
/*    display: none; */
}
.line{
    width: 70%;
    border: 2px solid white;
    border-radius: 5px;
    margin: 0 auto;
    margin-top: 50px;
}
.main__section-body{
    margin-top: 50px;
}
.main-title{
    font-size: 50px;
    color: white;
}
.main__section-items{
    margin-top: 50px;
}
.main__section-item{
    margin-top: 30px;
}
.item-title{
    font-size: 25px;
    color: white;
    font-weight: 600;
}
.main-item{
    color: white;
    font-size: 18px;
    line-height: 1.6;
    margin-top: 20px;
}
li{
    color: white;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

/* footer */

.footer__section{
    padding: 50px 0px;
}
.footer__section-body{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer__text{
    margin-top: 30px;
}
.first__footer__text{
    margin-top: 0px;
}
.footer-text{
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    color: #FFFFFF;
}
.footer__docs{
    text-align: center;
    margin-top: 50px;
}
.footer-docs, .footer-link{
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: #FFFFFF;
}
.footer-logo{
    width: 400px;
}

@media (max-width: 1400px) {
    
    .container{
        max-width: 1200px;
    }

}

@media (max-width: 1200px) {
    
    .container{
        max-width: 1000px;
    }

    /* footer section */

    .footer-logo{
        width: 400px;
    }

}

@media (max-width: 1000px) {
    
    .container{
        max-width: 800px;
    }

    /* footer section */

    .footer__section-body{
        flex-direction: column;
        align-items: flex-start;
    }
    .footer__section-right{
        margin-top: 50px;
    }

}

@media (max-width: 800px) {
    
    .container{
        max-width: 600px;
    }

}

@media (max-width: 600px) {
    
    .container{
        max-width: 400px;
    }

    /* main section */

    .header__wrapper{
        flex-direction: column;
        row-gap: 30px;
    }
    .header-link{
        font-size: 20px;
    }
    .main-link-img{
        width: 250px;
    }
    .main-title{
        font-size: 30px;
    }
    .main-item{
        font-size: 18px;
    }

    /* footer section */

    .footer-text{
        font-size: 15px;
    }
    .footer-logo{
        width: 300px;
    }
    .footer-docs, .footer-link{
        font-size: 13px;
    }


}

@media (max-width: 420px) {

    .container{
        max-width: 330px;
    }

    /* main section */

    .main-item{
        font-size: 16px;
    }
    
}
