
body {
    margin: 0;
    font-family: "Arial", sans-serif;
    background-color: #fbff00;
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    overflow-y: scroll;
}

.header {
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    font-family: "Anton", sans-serif;
    align-items: center;
    width: 100%;
    height: 20px;
    padding: 10px 5px;
    background-color: #b8b8b8;
}

.header-left h1 {
    font-size: 1.5em;
    margin: 20px;
    font-weight: normal
}

.header-right {
    font-size: 1.5em;
    display: flex;
    margin: 20px;
    gap: 20px;
    flex-grow: 1;
    justify-content: flex-end;
}

.header-right a {
    font-size: 1em;
    text-decoration: none;
    color: #000;
    font-weight: normal;
}


@media (max-width: 768px) {
    .header {
        flex-direction: row;
        height: 10px;
        padding: 20px;
        
    }

    .header-left h1 {
        font-size: 1em;
    }

    .header-right a {
        font-size: 0.65em;
    }
    
    .additional-header h2 {
        font-size: 1em; /* Responsive adjustment */
    }
}

.projects {
    padding: 20px;
    text-transform: uppercase;
}

.projects h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.project-list {
    font-size: 3em;
    line-height: 1.5em;
    word-wrap: break-word; /* Ensures long words or URLs break to fit smaller screens */
}

.project-list a {
    text-decoration: none;
    color: #000;
      transition: transform 0.3s ease, color 0.3s ease; /* Added transition for smooth animation */
}

.project-list a:hover {
    transform: scale(1.05); /* Slightly enlarges the title on hover */
    color: #b8b8b8; /* Changes color on hover */
}

.project-list img {
    vertical-align: auto; 
    margin-left: 10px;
    width: auto;
    height: 38px;
    object-fit: contain;
    transition: transform 0.3s ease; /* Added transition for smooth animation */
}

.project-list img:hover {
    transform: scale(1.1); /* Slightly enlarges the image on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .projects {
        padding: 20px;
    }

    .project-list {
        font-size: 2em; /* Adjusts font size for smaller screens */
        line-height: 1.2em;
    }

    .project-list img {
        height: 28px; /* Adjusts image height for smaller screens */
    }
}

