* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f5f5f5;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #20232a;
}

.logo {
    font-size: 1.5rem;
    color: #61dafb;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    display: inline;
    margin: 0 15px;
}

.nav-links a {
    color: #61dafb;
    text-decoration: none;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 60vh;
    background: #61dafb;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
}

.about, .team {
    padding: 40px 20px;
    text-align: center;
}

.about h2, .team h2 {
    font-size: 2rem;
    color: #20232a;
    margin-bottom: 20px;
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: #20232a;
    color: #61dafb;
}

.footer .social-icons a {
    color: #61dafb;
    margin: 0 10px;
    text-decoration: none;
}