html, body{
    margin: 0;
    padding: 0;
    background-color: #F4F9FC;
    color: #0F1B61;
    font-size: 18px;
}

h1 {
    margin: 0;
    padding: 0;
}

p {
    font-size: 1.2rem;
}

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

.projects {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.project {
    background-color: #f0f0f0c4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

section.hero {
    gap: 50px;
}

section.about {
    background-color: #f0f0f0c4;
}

#profile-picture {
    height: 400px;
}

.about-me {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.about-text {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}

.about-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-me p {
    width: 25%;
    margin: 0;
    padding: 0;
}


#hero{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}

.contact {
    background-color: #f0f0f0c4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
