#wallpaper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.download-btn {
    text-decoration: underline;
}

.wallpaper-preview {
    width: 100%;
}

.wallpaper-preview img {
    width: 100%;
    height: auto;
}

.wallpaper-action {
    display: flex;
    gap: 1rem;
}

@media screen and (max-width: 768px) {
    #wallpaper {
        grid-template-columns: repeat(2, 1fr);
    }
}
