*{
    margin: 0;
    padding: 0;
    font-family: "permanent marker", cursive;
}
*::selection{
    background-color: white;
    color: black;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    background: linear-gradient(45deg,#f2cad1 70%, white);
}

nav{
    height: 10vh;
    width: 100%;
    background-color: #000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    position: absolute;
    top: 0;
} nav::after{
    content: "";
    position: absolute;
    height: 5px;
    width: 100%;
    background-color: #f93959;
    bottom: 0;
} nav::before{
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #f93959;
    bottom: -5px;
}

.cover{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72vh;
    width: 33%;
    border: 4px solid #f8516d;
    border-radius: 30px;
    padding: 5px;
}
.container{
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mark{
    height: 100px;
    position: absolute;
    top: 70px;
    animation: rotate 5s infinite linear;
}
@keyframes rotate {
    0%, 100%{
        transform: rotateY(0deg);
    }
    35%{
        transform: rotateY(30deg);
    }
    70%{
        transform: rotateY(-30deg);
    }
}

.score{
    position: absolute;
    top: 90px;
    left: 30px;
    padding: 10px 0;
} .score::selection{
    background-color: #000;
    color: white;
}
.score::before{
    content: "";
    position: absolute;
    height: 100%;
    width: 160px;
    border: 5px solid #f93959;
    top: 0;
    left: -20px;
    border-radius: 10px;
} .score::after{
    content: "";
    position: absolute;
    height: 100%;
    width: 160px;
    border: 2px solid #f93959;
    top: -7px;
    left: -27px;
    border-radius: 15px;
    padding: 10px;
}

.buton{
    cursor: pointer;
    border: none;
    background-color: #000;
    color: #fff;
    text-align: center;
    height: 30px;
    width: 150px;
    border-radius: 10px;
    font-size: 15px;
    transition: 0.2s ease-in-out;
    margin: 10px 0px 0px -10px;
}
.buton:hover{
    background-color: #fff;
    color: #000;
    border: 3px solid #000;
}


.main-game{
    height: 70vh;
    width: 70vh;
    background-color: #000000;
    border-radius: 25px;
    color: white;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 40px;
    border: 5px solid #f93959;
}

input{
    height: 10vh;
    width: 45vh;
    border: 3px solid white;
    border-radius: 20px;
    outline: none;
    background-color: #000000;
    color: white;
    font-size: 25px;
    text-align: center;
}
input::placeholder{
    color: white;
}

button{
    border: none;
    background-color: #fff;
    color: black;
    text-align: center;
    height: 50px;
    width: 200px;
    border-radius: 20px;
    font-size: 20px;
    transition: 0.2s ease-in-out;
    cursor: pointer;
}
button:hover{
    background-color: black;
    color: white;
    border: 3px solid white;
}

.result-container{
    height: 70vh;
    width: 70vh;
    background-color: black;
    display: none;
    border-radius: 25px;
    color: white;
    font-size: 20px;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.newH1{
    font-size: 35px;
}
.choices{
    font-size: 40px;
}
.result-message{
    font-size: 40px;
    color: red;
    padding: 0px 0 10px 0;
}

.number{
    position: absolute;
    top: 150px;
    right: 100px;
    height: 100px;
    width: 80px;
    z-index: 10;
    opacity: 0.6;
    animation: bounce0 3s infinite;
    animation-delay: 0.6s;
}
@keyframes bounce0 {
        0%, 20%, 50%, 80%, 100% {
          transform: translateY(0);
          height: 100px;
          width: 80px;
        }
        40% {
          transform: translateY(-30px);
          height: 100px;
          width: 80px;
        }
        60% {
          transform: translateY(-15px);
          height: 100px;
          width: 80px;
        }
        55%{
            height: 90px;
            width: 81px;
           }
}

.one{
    top: 270px;
    left: 220px;
    animation: bounce1 3s infinite;
    animation-delay: 0.1s;
}
@keyframes bounce1 {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      height: 100px;
      width: 80px;
    }
    40% {
      transform: translateY(-30px);
      height: 100px;
      width: 80px;
    }
    60% {
      transform: translateY(-15px);
      height: 100px;
      width: 80px;
    }
    55%{
        height: 90px;
        width: 81px;
    }
}

.two{
    top: 340px;
    right: 50px;
    animation: bounce2 3s infinite;
    animation-delay: 0.6s;
}
@keyframes bounce2 {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      height: 100px;
      width: 80px;
    }
    40% {
      transform: translateY(-30px);
      height: 100px;
      width: 80px;
    }
    60% {
      transform: translateY(-15px);
      height: 100px;
      width: 80px;
    }
    55%{
        height: 90px;
        width: 81px;
    }
}

.three{
    top: 400px;
    left: 80px;
    animation: bounce3 3s infinite;
    animation-delay: 0s;
}
@keyframes bounce3 {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      height: 100px;
      width: 80px;
    }
    40% {
      transform: translateY(-30px);
      height: 100px;
      width: 80px;
    }
    60% {
      transform: translateY(-15px);
      height: 100px;
      width: 80px;
    }
    55%{
        height: 90px;
        width: 81px;
    }
}

.four{
    top: 400px;
    right: 250px;
    animation: bounce4 3s infinite;
    animation-delay: 0.4s;
}
@keyframes bounce4 {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      height: 100px;
      width: 80px;
    }
    40% {
      transform: translateY(-30px);
      height: 100px;
      width: 80px;
    }
    60% {
      transform: translateY(-15px);
      height: 100px;
      width: 80px;
    }
    55%{
        height: 90px;
        width: 81px;
    }
}

.five{
    top: 550px;
    right: 400px;
    animation: bounce5 3s infinite;
    animation-delay: 0.3s;
}
@keyframes bounce5 {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      height: 100px;
      width: 80px;
    }
    40% {
      transform: translateY(-30px);
      height: 100px;
      width: 80px;
    }
    60% {
      transform: translateY(-15px);
      height: 100px;
      width: 80px;
    }
    55%{
        height: 90px;
        width: 81px;
    }
}

.six{
    top: 230px;
    right: 320px;
    animation: bounce6 3s infinite;
    animation-delay: 0.4s;
}
@keyframes bounce6 {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
      height: 100px;
      width: 80px;
    }
    40% {
      transform: translateY(-30px);
      height: 100px;
      width: 80px;
    }
    60% {
      transform: translateY(-15px);
      height: 100px;
      width: 80px;
    }
    55%{
        height: 90px;
        width: 81px;
    }
}

.seven{
    top: 520px;
    right: 130px;
    animation: bounce7 3s infinite;
    animation-delay: 0.5s;
}
@keyframes bounce7 {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      height: 100px;
      width: 80px;
    }
    40% {
      transform: translateY(-30px);
      height: 100px;
      width: 80px;
    }
    60% {
      transform: translateY(-15px);
      height: 100px;
      width: 80px;
    }
    55%{
        height: 90px;
        width: 81px;
    }
}

.eight{
    top: 470px;
    left: 350px;
    animation: bounce8 3s infinite;
    animation-delay: 0.2s;
}
@keyframes bounce8 {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      height: 100px;
      width: 80px;
    }
    40% {
      transform: translateY(-30px);
      height: 100px;
      width: 80px;
    }
    60% {
      transform: translateY(-15px);
      height: 100px;
      width: 80px;
    }
    55%{
        height: 90px;
        width: 81px;
    }
}

.nine{
    top: 120px;
    left: 350px;
    animation: bounce9 3s infinite;
    animation-delay: 0.2s;
}
@keyframes bounce9 {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      height: 100px;
      width: 80px;
    }
    40% {
      transform: translateY(-30px);
      height: 100px;
      width: 80px;
    }
    60% {
      transform: translateY(-15px);
      height: 100px;
      width: 80px;
    }
    55%{
        height: 90px;
        width: 81px;
    }
}

/* @keyframes bounce {
   0%{
       top: 150px;
       right: 100px;
   }
   50%{
       top: 120px;
       right: 100px;
   }
} */