.navbar {
    background-color: darkblue;
    font-size: x-large;
}

.nav-link {
    display: flex;
    justify-content: space-evenly;
    list-style: none;
}

.nav-link a {
    text-decoration: none;
    color: white;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.body {
    background-color: rgb(106, 106, 106);
}

.projects-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 50px 0;
    gap: 30px;
}

.cards-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;

}

.cards {
    background-color: white;
    border-radius: 25px;
    max-width: 500px;
    box-shadow: 0 10px 10px rgb(0, 0, 0.3);
    text-align: center;
    padding-bottom: 30px;
}

.card-image-wrapper img {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.card h3, .card p {
    padding: 10px;
}

