body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}

.main {
    display: flex;
    height: 100%;
}

.work-section {
    width: 70%; /* Adjust the width as needed to accommodate the image */
    overflow: hidden;
}

.work-screenshot {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Align content to the left vertically */
}

/* Add transition to the image */
.work-screenshot img {
    max-width: 50%;
    max-height: 100%;
    display: block;
    margin-left: 50px;
    transition: opacity 1s ease; /* Add a smooth opacity transition */
    opacity: 0; /* Start with zero opacity */
}

.footer-bar {
    background-color: white;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
    height: 55px; /* Adjust the height as needed */
    border-top: 1px solid black; /* Add a thin black border at the top */
}

.footer-content {
    display: flex;
    gap: 10px; /* Adjust the gap between items as needed */
    align-items: center; /* Center items vertically within .footer-bar */
}

/* Add margin-right to create space between "nate eyob" and "work" */
.footer-item:first-child {
    margin-right: 45px; /* Adjust the horizontal gap as needed */
}

/* Style "nate eyob" */
.footer-item:first-child {
    font-size: 20px;
    text-decoration: none;
    color: black;
    font-family: "Helvetica", sans-serif; /* Apply Helvetica font */
    user-select: none; /* Prevent text selection on hover */
}

/* Style the other two words smaller */
.footer-item:nth-child(n+2) {
    font-size: 16px; /* Adjust the font size as needed */
    text-decoration: none;
    color: black;
    font-family: "Helvetica", sans-serif; /* Apply Helvetica font */
    user-select: none; /* Prevent text selection on hover */
}

/* Style the links on hover, excluding "nate eyob" */
.footer-item:nth-child(n+2):hover {
    color: rgb(0, 0, 0); /* Change color to light gray on hover */
}

/* Remove the hover effect for "nate eyob" */
.footer-item:first-child:hover {
    color: lightgrey; /* Restore the original color on hover */
}

.about-text {
    width: 25%; /* Set the width to 25% of the parent container */
    padding: 20px; /* Adjust padding as needed */
    box-sizing: border-box;
    overflow: auto;
    font-family: "Helvetica", sans-serif; /* Apply Helvetica font */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: auto; /* Auto margin on the left side to create a gap */
}