* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #ec0474 0%, #f97316 100%);
  color: white;
  min-height: 100vh;
  overflow: hidden;
}
#wrapper {
    position: relative;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    max-width: 640px;
}
#whitepart {
    width: 85%;
    max-width: 640px;
    margin-bottom: 0;
    border-radius: 32px 32px 0px 0px;
    height: 70px;
    margin-top: 35px;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    opacity: 100%;
    display: flex;
      
}
textarea{
    width: 100%;
    height: 130px;
    background-color: rgb(255, 255, 255, .4);
    border-radius: 0 0 32px 32px;
    outline: none;
    padding-top: 20px;
    padding-left: 5%;
    padding-right: -5%;
    font-size: 20px;
    border: none;
    
}

#t1 {
    color: black;
    margin-left: 10px;
    margin-top: 23px;
    font-size: 12px;
    
}
img {
    height: 50px;
    width: 50px;
    margin-left: 10px;
    margin-top: 10px;
}
#q1 {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}
#dice {
    position: absolute;
    height: 40px;
    width: 40px;
    right: 25px;
    top: 82%;
    transform: translateY(-82%);
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.25);
    padding: 8px;
    border-radius: 100px;
    text-align: center;
    touch-action: manipulation;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
#ct {
    text-align: center;
    margin-top: 350px;
}
#dost {
    height: 60px;
    width: 85%;
    max-width: 640px;
    background-color: black;
    margin-left: auto;
    margin-right: auto;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    animation: bounceZoom 2s ease-in-out infinite; /* ciągła animacja */

}
#dost > a {
    color: white;
    text-decoration: none;
}
#terms {
    width: 100%;
    font-size: 12px;
    display: flex;
    margin-top: 25px;
    justify-content: center;
    align-items: center;
}
#terms > a {
    color: rgb(255, 255, 255);
    opacity: 50%;
    text-decoration: none;
    margin-left: 8px;
    margin-right: 8px;
}


@keyframes bounceZoom {
    0%, 10%, 65%, 100% {
  transform: rotate(0deg) scale(1.0);
}
30%, 40% {
  transform: rotate(-1deg) scale(1.05);
}
35%, 45% {
  transform: rotate(1deg) scale(1.05);
}
}

#send {
    width: 80%;
    height: 60px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    border-radius: 100px;
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.25);
    cursor: pointer;
    visibility: hidden;
    
}
#dost:hover {
    cursor: pointer;
}
textarea:hover {
     cursor: pointer;
}
#terms:hover {
    cursor: pointer;
}
#dice:hover{
    cursor: pointer;
}