body{
    margin: 0;
    font-family: 'Comic Sans MS', 'Courier New', Courier, monospace, sans-serif;
    background: linear-gradient(120deg, #ffd1dc, #ffe3f3);
    color: #e95555;
    overflow: hidden;
}
.wrapper{
    padding: 30px;
    text-align: center;
}
.bounce{
    margin-top: 25px;
    padding: 15px 25px;
    background-color: #ff90b3;
    color: rgb(229, 224, 240);
    border: none;
    border-radius: 40px;
    cursor: pointer;
    animation: bounce 2s infinite;
}
@keyframes bounce{
    0%, 100% { transform: translateY(0);}
    50% {transform: translateY(-8px);}
}
.grid{
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
    flex-wrap: wrap;
}
.box{
    background: white;
    padding: 15px;
    border-radius: 20px;
    width: 200px;
    transition: background 0.3s ease;
}
.box:hover{
    background: #ffd1dc;
}
@media(max-width: 500px){
    .grid{
        flex-direction: column;
        align-items: center;
    }
    .box{
        width: 80%;
    }
}