body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1c1c1c;
    color: white;
}

.challenge-container {
    text-align: center;
}

h1 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.image-cell {
    position: relative;
    background-color: #2e2e2e;
    padding: 10px;
    border-radius: 10px;
    transition: transform 0.2s;
}

.image-cell img {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
}

.image-cell:hover {
    transform: scale(1.1);
}

.download-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 5px;
    border-radius: 50%;
}

.download-icon img {
    width: 24px;
    height: 24px;
}
.shadow-image{
    object-fit:cover;
}
