* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #ff9acb, #ffd1e8);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card Style */
.card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    width: 50vw;
    height: 50vh;
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.4);
}

/* Headings */
h1 {
    font-family: 'Pacifico', cursive;
    color: #ff4fa3;
    margin-bottom: 15px;
}

p {
    color: #ff69b4;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    max-height: 3rem;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

/* Accept Button */
.accept {
    background: #ff4fa3;
    color: white;
}

.accept:hover {
    background: #ff1f8f;
    transform: scale(1.05);
}

/* Reject Button */
.reject {
    background: #ffd1e8;
    color: #ff4fa3;
}

.reject:hover {
    background: #ffc0dd;
    transform: scale(1.05);
}

/* GIF */
.gif {
    width: 100%;
    max-width: 250px;
    margin-top: 20px;
    border-radius: 20px;
}


.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
}

.reject {
    z-index: 1;
    position: relative;
     transition: top 0.2s ease, left 0.2s ease;
}