body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0f172a;
    color: white;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 64px;
    margin: 0;
}

.hero h2 {
    font-size: 24px;
    margin-top: 15px;
}

.hero p {
    font-size: 18px;
    color: #94a3b8;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

.about {
    padding: 80px 20%;
    text-align: center;
}

.about h2 {
    font-size: 36px;
}

.about p {
    font-size: 18px;
    line-height: 1.7;
    color: #94a3b8;
}

.projects {
    padding: 80px 20%;
    text-align: center;
}

.projects h2 {
    font-size: 36px;
}

.projects p {
    font-size: 18px;
    color: #94a3b8;
}

.contact {
    padding: 80px 20%;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
}

.contact p {
    font-size: 18px;
    color: #94a3b8;
}