body {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: white;
    text-align: center;
}

nav {
    background-color: #222;
    padding: 10px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

.project {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.5);
    text-align: center;
    border: 2px solid #00aaff;
    color: white;
}

.project:hover {
    box-shadow: 0 0 15px #00aaff;
}

.memoji {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2);
}

.link {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #00aaff, #0088cc);
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 170, 255, 0.4);
    width: 80%;
    text-align: center;
    max-width: 250px;
    margin: 10px auto;
    display: block;
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }

    .project {
        width: 90%;
        margin: 0 auto;
    }
}
