body {
    background: #101820FF;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #F2AA4CFF;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 20px;
    background: #1C1C1C;
    border-bottom: 2px solid #F2AA4CFF;
}

main {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.assignments, .projects {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.assignment, .project {
    background: #1C1C1C;
    border-radius: 10px;
    overflow: hidden;
    width: 48%;
    display: flex;
    flex-direction: column;
}

.assignment img, .project img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.description {
    padding: 20px;
}

.description a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: #F2AA4CFF;
    color: #101820FF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.description a:hover {
    background: #D4AF37;
    color: white;
}

.description h3 {
    margin-top: 0;
    color: #D4AF37;
}

.description p {
    color: #E1C699;
}

footer {
    text-align: center;
    padding: 10px;
    background: #1C1C1C;
    border-top: 2px solid #F2AA4CFF;
    color: #F2AA4CFF;
}

@media (max-width: 768px) {
    .assignment, .project {
        width: 100%;
        display: block;
    }
    
    .description {
        text-align: center;
    }
    
    .assignments, .projects {
        flex-direction: column;
        gap: 15px;
    }
}
