body {
    margin: 0;
    height: 100vh;
    background: #96B9FF;
    background: linear-gradient(180deg, rgba(150, 185, 255, 1) 0%, rgba(190, 255, 254, 1) 100%);
    font-family: 'Nunito', sans-serif;
    text-align: center;
}

main {
    text-align: left;
    padding: 50px;
    max-width: 850px;
    margin: auto;
}

h3 {
    font-weight: 500;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0,1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 12px;
}


.navbar-content {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #cde4ff;
}

.social-media-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-media-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    font-size: 20px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.social-media-links img {
    width: 36px;
}

.social-media-link:hover {
    opacity: 0.8;
}

.social-media-static {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    font-size: 20px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 25px 0px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease;
}

.project-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}

.project-card h2 {
    margin-top: 0;
    font-size: 24px;
}

.project-card p {
    font-size: 16px;
    margin: 10px 0 20px;
}

.project-link {
    text-decoration: none;
    color: #4ba3ff;
    font-weight: 600;
    transition: color 0.2s ease;
}

.project-link:hover {
    color: #90caff;
}