body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

nav {
    background-color: #333;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
}

.nav-left a, .nav-right a {
    color: white;
    text-decoration: none;
    transition: transform 0.2s, font-size 0.2s;
}

.nav-right a {
    margin-left: 1.5rem;
}

.nav-left a:hover, .nav-right a:hover {
    transform: scale(1.1);
    font-size: 1.6rem;
}

main {
    background-color: #d0d0d0;
    flex-grow: 1;
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 10rem;
    padding-right: 10rem;
    text-align: center;
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project-item {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-image {
    height: 250px;
    object-fit: cover;
}

.project-info {
    padding: 1rem;
    flex-grow: 1;
}

.project-info h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.project-info h2 a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.project-info h2 a:hover {
    color: #0056b3;
}

.project-info p {
    margin: 0;
    font-size: 0.9rem;
}

footer {
    background-color: #333;
    color: white;
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.social-icon {
    font-size: 2rem;
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    transition: transform 0.2s;
}

.social-icon:hover {
    transform: scale(1.2);
}

.social-icon i {
    vertical-align: middle;
}