        body {
            display: flex;
            justify-content: end;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            background-image: url('images/bg.png');
            background-size: contain;
            background-position: center;
            font-family: Arial, sans-serif;
            background-repeat: no-repeat;
            background-color: black;
            flex-direction: column;
        }
        img{
            width: 100%;
            margin: 0 auto;
        }
        
        .top{
            position: absolute;
            top: 120px;
            text-align: center;
        }
        .grid-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            max-width: 900px;
            position: relative;
            top: -90px;
        }
        
        .grid-item {
            position: relative;
            aspect-ratio: 1;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
            margin: 0 auto;
        }
        
        .grid-item:hover {
            transform: scale(1.03);
        }
        
        .grid-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            max-width: 110px;
        }
        
        .grid-item .default-img {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
        }
        
        .grid-item.scratched .default-img {
            opacity: 0;
        }
        

        
        .grid-item:hover .scratch-overlay {
            opacity: 1;
        }
        
        .reset-btn {
            padding: 12px 24px;
            background-color: transparent;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
        }
        .reset-btn img{
            width: 100%;
            max-width: 300px;
        }
        
        .reset-btn.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
.cta-button.visible {
    display: block; 
    position: absolute;
}
.cta-button{
    display: none;
}

.cta-button img{
    max-width: 300px;
}

  @media(max-width:500px){
    body{
        background-size: cover;
    }

}

.title{
    display: flex;
    flex-direction: column;
}
.section-popup{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 500px;
    transform: translate(-50%, -50%);
    text-align: center;
}

    @keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2); /* zoom in */
  }
  100% {
    transform: scale(1); /* zoom out */
  }
}

.zoom-effect {
  animation: zoomInOut 1.5s infinite ease-in-out;
}