*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#e4ddcc;
    color:#1a1a1a;
    font-family:"Courier New", monospace;
    padding:36px;
}

.layout{
    display:flex;
    align-items:flex-start;
    gap:55px;
}

.sidebar{
    width:280px;
    flex-shrink:0;
}

.title{
    font-family:"Arial Narrow", Arial, sans-serif;
    font-size:5.8rem;
    line-height:.82;
    font-weight:500;
    margin-bottom:40px;
    letter-spacing:-0.04em;
}

.subtitle{
    color:#1f67dc;
    font-size:1rem;
    line-height:1.5;
    max-width:260px;
    margin-bottom:50px;
}

nav{
    display:flex;
    flex-direction:column;
    gap:14px;
}

nav a{
    color:#1f67dc;
    text-decoration:none;
    font-size:1rem;
}

nav a:hover{
    opacity:.6;
}

.home-projects{
    display:flex;
    align-items:flex-start;
    gap:32px;
    margin-top:10px;
}

.project-card{
    width:320px;
    text-decoration:none;
}

.project-card img{
    width:100%;
    height:500px;
    object-fit:cover;
    display:block;
}

.project-card p{
    margin-top:18px;
    color:#1f67dc;
    line-height:1.2;
    font-size:.95rem;
    min-height:50px;
}

/* PROJECT PAGES */

.project-page{
    display:grid;
    grid-template-columns:520px 460px;
    gap:70px;
    align-items:start;
}

.main-image img{
    width:100%;
    max-height:85vh;
    object-fit:contain;
}

.project-text{
    line-height:1.65;
    font-size:.95rem;
    color:#1a1a1a;
    max-width:460px;
}

.project-text h2{
    color:#1f67dc;
    font-size:1.05rem;
    margin-bottom:25px;
    font-weight:normal;
}

.project-text p{
    margin-bottom:20px;
}

.project-text img{
    width:100%;
    margin-top:24px;
}

/* ABOUT */

.about{
    max-width:760px;
    color:#1a1a1a;
}

.about h2{
    color:#1f67dc;
    margin-bottom:30px;
    font-size:1.2rem;
    font-weight:normal;
}

.about p{
    line-height:1.8;
    margin-bottom:20px;
}

/* MOBILE */

@media(max-width:900px){
    body{
        padding:28px;
    }

    .layout{
        display:block;
    }

    .sidebar{
        width:100%;
        margin-bottom:50px;
    }

    .title{
        font-size:4.8rem;
    }

    .home-projects{
        display:block;
    }

    .project-card{
        display:block;
        width:100%;
        margin-bottom:42px;
    }

    .project-card img{
        height:auto;
    }

    .project-page{
        display:block;
    }

    .project-text{
        margin-top:32px;
    }
}