* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: white;
    background: url('top-view-work-desk-with-drawing-pad-glasses-with-copy-space.jpg'); /* Add your background image here */
    background-size: cover; /* Make the background cover the entire page */
    background-position: center; /* Center the background image */
    background-attachment: fixed; /* Keeps the background fixed when scrolling */
    overflow: hidden;
}
.text-bottom {
    bottom: -50px;
    animation: slideUp 1.5s ease-out forwards;
    margin-left: 130px;
}
@keyframes slideDown {
    from {
        top: -40px;
        opacity: 0;
    }
    to {
        top: 50%;
        opacity: 1;
    }
}

header {
    width: 100%;
    position: absolute;
    top: 0;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav {
    display: flex;
    gap: 20px;
}

header nav a {
    text-decoration: none;
    color: #aaa;
    font-size: 18px;
}

header nav a:hover {
    color: #fff;
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 50px;
    height: 100vh;
    /* Removed background-color to allow the image to show */
}

.about-content {
    max-width: 50%;
}

.about-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content .location {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 20px;
}

.about-image {
    max-width: 40%;
    text-align: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

footer {
    position: absolute;
    bottom: 10px;
    text-align: center;
    width: 100%;
    color: gray;
}
