body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url(/images/bg.png);
    color: #444;
    margin: 0;
    padding: 0;
}

header {
    background: #050708f5;
    color: #fff;
    padding: 20px;
    text-align: center;
}

section {
    padding: 20px;
    margin: 10px auto;
    max-width: 900px;
    background: rgba(255,255,255,0.85);
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.25);
}

.about {
    padding: 20px;
}

h2 {
    color: #444;
}

footer {
    text-align: center;
    padding: 10px;
    background: #050708f5;
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    margin: 0 10px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.social-links a:hover {
    text-decoration: underline;
    font-size: 40;
    color: #000;
}

footer p {
    color: #fff;
    font-weight: bold;
    font-size: 15px;
}

/*Project list*/
.project-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.project-card {
    background: #FFFFFF;
    border-left: 4px solid #28a745;
    padding: 15px;
    border-radius: 8px;
    width: 250px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.113);
    transition: transform 0.2s;
}

.project-card:hover {
    transform: translate(-5px);
}

.project-card h3 {
    margin-top: 0;
    color: #28a745;
}

.project-card p {
    font-size: 14px;
    color: #444;
}

.project-card a {
    display: inline-block;
    padding: 8px;
    background: #2e2e2e;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.project-card a:hover {
    background-color: #4d4f58;
}

nav {
    background-color: #333;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    margin: 0;
    gap: 20px;
}

.navbar li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 4px
    transition: background-color 0.2s ease;
}

.navbar li a:hover {
    background-color: #007bff;
}