::-webkit-scrollbar{
    display: none;
}
body{
    margin: 0;
    padding-bottom: 10px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
nav{
    display: flex;
    align-items: center;
    width: 100%;
    background: #fff;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.281);
    justify-content: space-between;
    height: 63px;
    margin-bottom: 15px;
}
nav #logo{
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-left: 9px;
    user-select: none;
}
nav #logo img{
    height: 45px;
    width: 45px;
    margin-right: 3px;
}
nav #logo h2{
    margin: 5px 9px;
    background: linear-gradient(159deg,rgb(65, 182, 225),blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 29px;
}
nav .menu{
    margin-right: 15px;
    display: flex;
    align-items: center;
}
nav .menu a{
    margin: 5px 9px;
    text-decoration: none;
    font-size: 19px;
    color: dimgray;
    user-select: none;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
nav .menu a i{
    display: none;
}
nav .menu a:hover{
    color: #ffd700;
}
nav .menu a p{
    margin: 3px;
}
.container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.container .left{
    width: 500px;
    height: max-content;
    padding: 15px;
}
.container .left h1{
    font-size: 63px;
    margin: 5px;
    background: linear-gradient(90deg,rgb(0, 153, 255),rgb(255, 47, 47));
    width: fit-content;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.container .left p{
    color: dimgray;
    font-size: 17px;
    margin: 9px;
}
.container .left .download{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.container .left .download a{
    padding: 9px 15px;
    background: royalblue;
    color: #fff;
    user-select: none;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.4s;
    text-align: center;
    margin-top: 42px;
}
.container .left .download a:hover{
    box-shadow: 2px 2px 5px rgba(49, 49, 49, 0.542);
}
.container .right{
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.container .right img{
    width: 100%;
    height: fit-content;
    user-select: none;
    max-height: 400px;
}
.container .right p{
    color: dimgray;
    margin: 5px;
    font-size: 17px;
}
.box{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2px;
}
h1{
    background: royalblue;
    padding: 9px;
    color: #fff;
    border-radius: 5px;
    font-size: 23px;
}
.box .item{
    width: 96%;
    height: 91%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin: 5px;
    background: rgb(243, 243, 243);
    border-radius: 3px;
    box-shadow: 2px 2px 3px rgb(182, 182, 182);
    padding: 8px;
}
.box .item .left{
    width: max-content;
    height: max-content;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.box .item .left img{
    width: 100px;
    height: 100px;
    user-select: none;
    border-radius: 5px;
    box-shadow: 2px 2px 3px rgb(196, 196, 196);
}
.box .item .left h2{
    font-size: 19px;
    color: royalblue;
    user-select: none;
    text-align: center;
}
.box .item .right{
    width: 400px;
    height: max-content;
    padding: 8px;
    display: flex;
    flex-direction: column;
}
.box .item .right p{
    color: rgb(90, 90, 90);
    font-size: 17px;
}
.box .item .right a{
    padding: 8px 15px;
    background: rgb(4, 207, 54);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px;
    text-align: center;
    user-select: none;
    transition: 0.5s;
}
.box .item .right a:hover{
    background: rgb(0, 184, 46);
    letter-spacing: 1px;
}

@media(max-width:966px){
    .container .left h1{
        font-size: 39px;
    }
    .container .left p{
        font-size: 16px;
    }
    .container .right{
        width: 242px;
    }
}
@media(max-width:888px){
    .box .item{
        width: 91%;
    }
    .box{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
@media(max-width:651px){
    body{
        padding-bottom: 59px;
    }
    nav .menu{
        position: fixed;
        display: flex;
        justify-content: space-around;
        background: #fff;
        bottom: 0;
        border-top: 1px solid rgb(192, 192, 192);
        width: 100%;
        padding: 8px;
    }
    nav .menu a{
        color: dimgray;
        font-size: 17px;
    }
    nav .menu a i{
        display: block;
    }
    .container .left{
        width: 100%;
    }
    .container .right{
        width: 80%;
    }
    .box .item{
        width: 91%;
    }
}