* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: Helvetica, Arial, sans-serif; /* Change the font to Helvetica */
    background-color: #f0f0f0; /* Change the background color to light grey */
    overflow: hidden;
}

/* Main Page specific styles */
#background-video {
    position: fixed;
    left: 0;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Center the video vertically on screens with a maximum width of 768px (typical mobile screens) */
@media (max-width: 768px) {
    #background-video {
        top: 50%;
        transform: translateY(-50%);
    }
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 10px 0;
}

/* About Me Page specific styles */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.about-image {
    max-height: 80vh;
    max-width: 50%;
    vertical-align: middle;
}

.about-text {
    max-width: 40%;
    vertical-align: middle;
}

.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: lightgrey; /* Change color to light gray on hover */
}

/* Remove the hover effect for "nate eyob" */
.footer-item:first-child:hover {
    color: black; /* Restore the original color on hover */
}

/* Footer styles */
.bottom-nav {
    background-color: #f0f0f0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
}

.bottom-nav a {
    text-decoration: none;
    color: #333;
    margin: 0 20px;
}
