@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    flex-direction: column;
    background-color: #20262E;
}

@keyframes textBoxAnimation {
    0% {transform: scale(1);}
    50% {transform: scale(1.2);}
    100% {transform: scale(1);}
}

.text-box {
    background: linear-gradient(135deg, rgb(91, 33, 207) 0%, rgba(125,62,213,1) 50%, rgba(152,65,196,1) 100%);
    height: 150px;
    width: 350px;
    border-radius: 20px;
    color: #E9E8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-align: center;
    border: 3px solid rgba(125,62,213,1);
    box-shadow: 0 0 20px rgb(0, 0, 0, 0.4);
    position: relative;
    transition: 0.5s ease;
}

.text-box-item {
    font-size: 16px;
    position: absolute;
    bottom: 10px;
}

.buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 30px;
    margin-top: 20px;
}

.btn {
    background-color: #45c745;
    border-radius: 20px;
    height: 40px;
    width: 100px;
    color: #E9E8E8;
    border: none;
    box-shadow: 0 0 20px rgb(0, 0, 0, 0.4);
    border: 3px solid #3cb93c;
    font-weight: 500;
    font-size: 15px;
}

.cancel {
    background-color: #e94e4e;
    border: 3px solid #d33e3e;
}


.img {
    background-image: url(reddiyorum.jpg);
    background-size: cover;
    text-shadow: 0 0 2px rgb(0, 0, 0), 0 0 5px rgb(0, 0, 0);
}

.animation {
    animation-name: textBoxAnimation;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

.display {
    display: none;
}