body {
    backgroung-color: #1a1a1a;
    color: #00ff41
    font-family: 'Segoe UI',Tahoma, Geneva, Verdana,sans-serif;
    }

h1{
    text-aligh: center;
    color: #ffffff;
}
.contact-form{
    display: flex;
    flex-direction: column;
    place-items: center;
    gap: 15px;
    margin-top: 20px;
}
#userName, #userMessage{
    width: 100%;
    max-width: 400px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #444;
    background-color: #222;
    color: white;
}

.contact-form br {
    display: none;
}
input:focus, textarea:focus {
    outline: none;
    border-color: #27ae60;
    box-shadow: 0 0 10px #27ae60;
    transition: 0.3;
}

button:hover {
    background-color: #2ecc71 !important;
    cursor: pointer;
    transform: scale(1.05);
    transition: 0.2;
}
.projects {
    max-width: 900px;
    margin: 50 px auto;
    padding: 0 20px;
}
.projects-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px
}
.project-card{
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    cursor: default;
}
.project-card:hover{
    transform: translateY(-8px);
    border-color: #27ae60;
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.2);
}

.project-card h3 {
    margin-top: 0;
    color: #27ae60
}
.project-card p {
    font-size: 0.9em;
    color: #aaa;
    line-height: 1.5;
}

.tag {
    display; inline-block;
    background: #333;
    color: #eee;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.75em;
    margin-right: 5px;
    margin-top: 10px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1, h2, .project-card {
    animation: fadeInUp 0.8s ease backwards;
}

.project-card:nth-child(1) { animation-delay: 0.2s; }
.project-card:nth-child(2) { animation-delay: 0.4s; }
.project-card:nth-child(3) { animation-delay: 0.6s; }

