.container {
    display: flex;
    height: 100vh;
}

/* LEFT PANEL */
.left {
    background: #202632;
    color: white;
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav {
    position: absolute;
    top: 20px;
    left: 60px;
    font-size: 14px;
}

.nav span {
    margin-right: 20px;
    cursor: pointer;
    opacity: 0.8;
}

.nav span:hover {
    opacity: 1;
}

.intro {
    margin-top: 40px;
}

.intro small {
    color: #ffd166;
    font-size: 24px;
}

.intro h1 {
    font-size: 60px;
    line-height: 1.1;
    margin: 10px 0;
    font-weight: 700;
}

.intro p {
    font-size: 14px;
    opacity: 0.8;
}

/* RIGHT PANEL */
.right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left {
        padding: 30px;
    }

    .intro h1 {
        font-size: 36px;
    }

    .nav {
        left: 30px;
    }

    .right img {
        height: 110%;
    }
}