* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
body {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    min-height: 100vh;
    margin: 0;

}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  background-image: url(images/bgchild.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: -1;


}
.container {
    display: flex;
    margin: auto;
    flex-wrap: wrap;
    width: 960px;
    aspect-ratio: 1/1;
    border: 16px solid #e63946;
    border-radius: 24px;
    background: #fefefe;
}
.square {
    flex: 0 0 auto;
    aspect-ratio: 1/1;
    border: 1px solid black;
    background-color: #F5F5F5;
    
}
button {
    margin: 30px 15px;
    padding: 20px 28px;
    font-size: 16px;
    background: #1e90ff;
    border-radius: 16px;
    font-family: "Comic Sans MS", "Comic Neue", cursive;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
    letter-spacing: 2px;
    transform: rotate(-4deg)
}
button {
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: rotate(-4deg) translateY(0);
    }
    50% {
        transform: rotate(-4deg) translateY(-6px);
    }
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}
h1 {
    font-family: "Comic Sans MS", "Comic Neue", cursive;
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    color: #e3a623;
    text-shadow: 
    2px 2px 0 #f1faee,
    4px 4px 0 #a8dadc;
    letter-spacing: 2px;
    transform: rotate(-2deg);
    margin: 10px 0;
}
.deletion {
    margin: 30px 15px;
    padding: 18px 26px;
    font-size: 16px;
    background: #ff6b6b;
    border-radius: 16px;
    font-family: "Comic Sans MS", "Comic Neue", cursive;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
    letter-spacing: 2px;
    transform: rotate(2deg);
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 0 #cc4c4c;
    transition: all 0.15s ease;
}   


.deletion:hover {
    transform: rotate(2deg) scale(1.05);
    background: #ff7b7b;
}

.deletion:active {
    transform: rotate(2deg) scale(0.98);
    box-shadow: 0 3px 0 #cc4c4c;
}