@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #fff;
    text-align: center;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1e1e1e;
    padding: 10px 50px;
}

.logo {
    font-size: 24px;
    font-weight: 600;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #bbb;
    transition: color 0.3s;
}

nav ul li a.active,
nav ul li a:hover {
    color: #4db8ff;
}

.about {
    margin: 50px auto;
    max-width: 700px;
    padding: 20px;
}

.about h1 {
    font-size: 2.5em;
}

.about p {
    font-size: 1.2em;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #4db8ff;
    color: #121212;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #38a3d7;
}

.skills {
    margin-top: 50px;
}

.skill-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.skill-card {
    background: #1e1e1e;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s;
}

.skill-card:hover {
    transform: scale(1.1);
}

footer {
    margin-top: 50px;
    padding: 20px;
    background-color: #1e1e1e;
    text-align: center;
    bottom:0;
}
