* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background: #679098;
    color: white;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    }

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}
p{
    text-align: justify;
}

.subtitle {
    font-size: 1.1em;
    color: white;
    text-align: center;
}

main {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

section {
    margin-bottom: 40px;    
}

section#aboutMe p{
    text-align: left;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.contact {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 4px;
    margin-top: 20px;
}

.contact p {
    margin: 10px 0;
}   

a {
    color: #4a90e2;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: #999;
    font-size: 0.9em;
    margin-top: 60px;
    border-top: 1px solid #e9ecef;
}