.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;
}

.content {
    margin: 0 auto;    
    max-width: 1300px;
    justify-content: center;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.text-content h1 {
    font-size: 2rem;
    font-weight: bold;
    color: rgb(0, 0, 0);
    padding-right: 50px;
}

.text-content p {
    max-width: 500px;
    margin-bottom: 2rem;
}

.text-content a {
    padding: 1rem 2rem;
    background-color: rgb(0, 0, 0);
    padding: 10px 30px;
    color: white;
    text-decoration: none;
    border-radius: 25px;
}

.image-wrapper {
    width: 500px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
}

.about-me-container {
    display: flex;
    background-color: white;
    justify-content: center;
    padding:  100px 0;
    gap: 50px;
}

.about-me-wrapper {
    max-width: 500px;
}

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

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

.card {
    background-color: white;
    border-radius: 25px;
}

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

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

.project_container {
    color: white;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
}