* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    background: #6ba;
    color: white;
    padding: 15px;
    position: sticky;
    top: 0;
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin: 0 10px;
}

.navbar a {
    color: white;
    text-decoration: none;
}

/* SECTIONS */
.section {
    padding: 60px;
    text-align: center;
}

/* HOME */
.home {
    background: #ecf0f1;
}

.profile {
    width: 160px;
    border-radius: 50%;
}

/* SKILLS */
.skills {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}
.skill-card {
    background: #6ba;
    padding: 20px;
    width: 150px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
/* PROJECTS */
.project-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.card {
    background: #6ba;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
}

/* GALLERY */
.gallery img {
    width: 200px;
    margin: 10px;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #6ba;
    color: white;
    text-decoration: none;
    margin-top: 10px;
}