html, body {
    height: 100%; /* Ensure the full height is used */
    margin: 0; /* Remove default margin */
}

.container {
    display: flex;
    justify-content: space-between;
    height: 100vh; /* Viewport height to fill the screen */
    margin: 0;
}

.column {
    width: 33.33%;
    height: 100vh; /* Viewport height to fill the screen */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease; /* Smooth transition for scaling */
    box-sizing: border-box;
}

#journalism, #side-projects, #resume {
    background-size: cover;
    background-position: center;
}

#journalism {
    background: url('imgs/journalism.webp') no-repeat center center;
}

#side-projects {
    background: url('imgs/sideprojects.webp') no-repeat center center;
}

#resume {
    background: url('imgs/resume.webp') no-repeat center center;
}

.column:hover {
    transform: scale(1.05); /* Enlarge the columns on hover */
}
