/* styles.css */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
}

h1 {
    margin-top: 20px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.gift-box {
    width: 150px;
    height: 150px;
    position: relative;
    cursor: pointer;
    border: 2px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gift-box:hover {
    transform: scale(1.05);
}

.gift-box img.closed {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gift-box img.opened {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}