*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    font-family: 'Arial', sans-serif;
    background-color: #181d26;
}
header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: 2rem auto;
}

.navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    
}
.navigation ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.navigation ul li a:hover {    
    color: #27a187;
}
hr{
    opacity: 10%;
}
.hero{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   max-width: 1200px;
   margin: 5rem auto;
}
.name{
    font-size: 3rem;
    color: #14b8a6;
    margin-bottom: 1rem;
}
.me{
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 2rem;
}
@media (max-width: 1023px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    .navigation ul {
        flex-direction: column;
        gap: 1rem;
    }
    .hero {
        padding: 0 20px;
    }
    .name {
        font-size: 2rem;
    }
    .me {
        font-size: 1rem;
    }
}