html{
    background-color: #172044;
    color: #fff;
}
body{
    font-family: Cairo;
    padding: 5% 10%;
}
a, a:visited{
    color: #fff;
}
a:hover{
    color: rgb(159, 165, 253);
}
.main{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.box{
    width: 50%;
    text-align: center;
    max-width: 750px;
}
.left{
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 30px;
    margin-top: 100px;
}
.right{
    font-size: 1.2rem;
    margin-top: 100px;
    line-height: 10px;
}
@media(max-width: 1024px){
    body{
        padding: 2%;
    }
    .box{
        width: 100%;
    }
    .right{
        font-size: 1rem;
    }
    .left{
        font-size: 1rem;
    }
}