*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body,html{
    width:100%;
    height: 100%;
    font-family: 'Gillroy', 'Poppins', sans-serif;
}
.main{
    display: flex;
    height: 100%;
    width: 100%;
}
.main .left-part{
    height: 100%;
    width: 45%;
}
.left-part{
    position: relative;
}
.back{
    position: absolute;
    left:5%;
    top:2%;
}

.lnav{
    display: flex;
    justify-content: space-between;
    width:100%;
    padding:20px 30px;
}
.rnav{
    display: flex;
    gap:22px;
}
.content
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.content h3{
    font-weight: 900;
    font-size: 100px;
}
.content p{
    font-size: 15px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
}
.content a{
    text-decoration: none;
    color: black;
    font-weight: 700;
    padding: 10px 10px 0px 0px;
    border-bottom:1px solid royalblue;
}
.rnav a:hover{
    border-bottom: 1px solid grey;
}
i:hover{
    cursor: pointer;
    border-bottom: 1px solid grey;
}
#read:hover{
    border: none;
}
.main .left-part .navbar a{
    text-decoration: none;
    color: black;
}
.navbar .ri-twitter-fill{
    color: royalblue;
    font-size: 18px;
}
.navbar .ri-arrow-left-line{
    color:grey;
}
.main .right-part
{
    height: 100%;
    width: 55%;
}
.right-top{
    display: flex;
}
.right-bottom
{
    height: 50%;
    background-image: url("https://images.unsplash.com/photo-1583496715110-7d7a3d12034e?q=80&w=1135&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-position: center;
    background-size: cover;
}
.right-part .right-top{
    height:50%;
}
.right-top .rt-left
{
    width: 50%;
    height: 100%;
    background-image: url("https://images.unsplash.com/photo-1523049673857-eb18f1d7b578?q=80&w=1075&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-size: cover;
    background-position: center;
}
.right-top .rt-right{
    width:50%;
    height: 100%;
    background-image: url("https://images.unsplash.com/photo-1610478506025-8110cc8f1986?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-size: cover;
    background-position: center;
}
@media (max-width: 768px) {
    .main
    {
        flex-direction: column;
    }
    .main .left-part, .main .right-part
    {
        width: 100%;
    }
    .main .left-part{
        height: 50%;
    }
    .main .right-part{
        height: 50%;
    }
    .content h3{
        font-size: 60px;
    }
    .content p{
        font-size: 14px;
    }
}