@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html,
body {
    height: 100%;
    width: 100%;
    font-family: sans-serif;
}

.main {
    height: 100%;
    width: 100%;
    display: flex;
}

.left {
    height: 100%;
    width: 40%;
    position: relative;
}

.left .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content h1 {
    font-size: 5rem;
    font-weight: 900;
}

.content p {
    font-size: 2.1rem;
    margin: 20px 0;
    opacity: 0.7;
}

.content a {
    text-decoration: none;
    font-size: 0.9rem;
    color: black;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.6;
    border-bottom: 1px solid black;
    padding: 5px;

}

nav {
    display: flex;
    padding: 2rem 3rem;
    justify-content: space-between;
    align-items: center;
}

.r-nav {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    font-size: 1.4rem;
}

.r-nav a {
    color: black;
    text-decoration: none;
}

.r-nav i {
    color: rgb(80, 197, 255);
}

.right {
    height: 100%;
    width: 60%;

}

.r-top {
    height: 50%;
    width: 100%;

    display: flex;
}

.r-t-left {
    height: 100%;
    width: 55%;

    background-image: url('https://images.unsplash.com/photo-1549888834-3ec93abae044?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTJ8fG9yYW5nZXxlbnwwfDB8MHx8fDA%3D');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.r-t-right {
    height: 100%;
    width: 45%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('https://images.unsplash.com/photo-1515778767554-42d4b373f2b3?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTV8fGdyYXBlc3xlbnwwfDB8MHx8fDA%3D');
}

.r-bottom {
    background-image: url('https://images.unsplash.com/photo-1550828520-4cb496926fc9?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8N3x8cGluZWFwcGxlfGVufDB8fDB8fHww');
    background-size: cover;
    background-position: center;
    height: 50%;
    width: 100%;
}

@media (max-width:720px) {
    nav {
        padding: 0.6rem;
    }

    .main {
        flex-direction: column;
    }

    .left {
        width: 100%;
    }

    .left .content {
        position: absolute;
        top: 55%;
        left: 38%;
    }

    .content h1 {
        text-align: left;
        font-size: 1.3rem;
    }

    .content p {
        text-align: left;
        font-size: 1.5rem;
        margin: 5px 0;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        ;
    }

    .right {
        width: 100%;
    }
}
