body {
    background-color: #f0f0f0; /* Change to any color! */
    font-family: "Courier New", Courier, monospace;
    display: flex;
    justify-content: center;
}

#container {
    width: 900px;
    display: grid;
    grid-template-columns: 300px 300px 300px;
    grid-gap: 20px;
    padding: 20px;
}

header {
    grid-column: 1 / 4;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#pfp-box, #about-me, #scroll-box, #bottom-box {
    border: 2px solid black;
    background: white;
    padding: 15px;
}

/* Specific Placements based on your sketch */
#pfp-box {
    grid-row: 2;
    grid-column: 1;
    height: 300px;
}

#about-me {
    grid-row: 2;
    grid-column: 2;
}

#scroll-box {
    grid-row: 2 / 4; /* Makes it tall like the right side of your sketch */
    grid-column: 3;
    display: flex;
    flex-direction: column;
}

.inner-scroll {
    overflow-y: scroll;
    height: 100%;
    border-top: 1px solid #ccc;
    margin-top: 10px;
}

#bottom-box {
    grid-row: 3;
    grid-column: 1 / 3;
    height: 200px;
}

/* Image styling */
#pfp-box img {
    width: 100%;
    height: auto;
}