body {
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #fff;
    line-height: 1.6;
}

header {
    background-color: #333;
    padding: 20px 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}

nav a:hover {
    color: #fff;
    border-bottom: 2px solid #fff;
}

section {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}


h2 {
    color: #fff;
}



section {
    animation: fadeIn 2s ease-in-out;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

a:visited {
    color: #bfbfbf;
}

/* .project {
    background: #1a1a1a;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.project img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}


.project:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
} */



/* FOR FUTURE USE! Change/add the corresponding classes below in the projects.html file!  */
.project {
    display: flex;
    /* Add 'flex-direction: row-reverse;' for image on the right  */
    background: #1a1a1a;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.project-image {
    flex: 2;
    margin-right: 15px;
    /* Add 'margin-left: 15px;' for image on the right  */
}

.project-info {
    flex: 2;
}

.project img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}


.food-truck-image {
    flex: 1;
    margin-right: 15px;
}




.project:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    /* background-color: #444; */
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}



h3 {
    margin-bottom: 10px;
}

.button-container a {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    background: #333;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.button-container a:hover {
    background: #444;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;

}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Media Query for smaller screens */
@media (max-width: 600px) {
    body {
        font-size: 16px;
    }

    nav ul li {
        display: block;
        margin-bottom: 20px;
    }

    .project {
        flex-direction: column;
    }

    .project-image,
    .food-truck-image {
        margin-right: 0;
    }
}