body{
    margin: 0;
    padding: 0;
    background: url(./assets/img/pexels-elīna-arāja-3377405.jpg) no-repeat fixed 50% 50%;
    background-size: cover;
}

header{
    text-align: center;
    margin-top: 5px;
}
/* button{
    width: 80px;
    height: 60px;
    background-color:black;
    text-decoration-style: none;
    cursor: pointer;
    border-radius: 5px;
    margin: 0px 15px;
    
} */



button {
  width: 80px;
    height: 60px;
    margin: 0px 15px;
  background: #333;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Consolas, Courier New, monospace;
  border: solid #404c5d 1px;
  font-size: 16px;
  color: rgb(161, 161, 161);
  -webkit-transition: 500ms;
  transition: 500ms;
  border-radius: 5px;
  background: linear-gradient(145deg, #2e2d2d, #212121);
  -webkit-box-shadow: -1px -5px 15px #41465b, 5px 5px 15px #41465b,
    inset 5px 5px 10px #212121, inset -5px -5px 10px #212121;
  box-shadow: -1px -5px 15px #41465b, 5px 5px 15px #41465b,
    inset 5px 5px 10px #212121, inset -5px -5px 10px #212121;
}

button:hover {
  -webkit-box-shadow: 1px 1px 13px #20232e, -1px -1px 13px #545b78;
  box-shadow: 1px 1px 13px #20232e, -1px -1px 13px #545b78;
  color: #d6d6d6;
  -webkit-transition: 500ms;
  transition: 500ms;
}

button:active {
  -webkit-box-shadow: 1px 1px 13px #20232e, -1px -1px 33px #545b78;
  box-shadow: 1px 1px 13px #20232e, -1px -1px 33px #545b78;
  color: #d6d6d6;
  -webkit-transition: 100ms;
  transition: 100ms;
}

p{
    background-color: aliceblue;
    
}

.flexbox{
display: flex;
margin: 20px;
justify-content: center;
}
.flexbox1 {
    position: relative;
    display: flex;
    width: 390px;
    height: 100px;
    border-radius: 14px;
    z-index: 1111;
    overflow: hidden;
    /* margin: 20px; */
   
    align-items: center;
    justify-content: center;
}
.user{
    display: flex;
    justify-content: center;
    margin: 0px;
    z-index: 1111;
}

.droit{
    position: relative;
    width: 400px;
    height: 200px;
    margin: 20px;
  border-radius: 14px;
  z-index: 1111;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #212121;
 box-shadow: 15px 15px 30px rgb(25, 25, 25),
             -15px -15px 30px rgb(60, 60, 60);
}




.left{
    
    position: relative;
    width: 400px;
    height: 200px;
    margin: 20px;
  border-radius: 14px;
  z-index: 1111;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #212121;
 box-shadow: 15px 15px 30px rgb(25, 25, 25),
             -15px -15px 30px rgb(60, 60, 60);
}

.bg {
    position: absolute;
    display: grid;
    grid-template-rows: 50% 50%;
    top: 5px;
    left: 5px;
    width: 390px;
    height: 190px;
    z-index: 2;
    background: #212121;
    backdrop-filter: blur(24px);
    border-radius: 15px;
    overflow: hidden;
    outline: 2px solid black;
  }
  
  .blob {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 100px;
    border-radius: 50%;
    background-color: #ff0000;
    opacity: 1;
    filter: blur(12px);
    animation: blob-bounce 10s infinite linear;
}
.left button{
  cursor: default;
}

@keyframes blob-bounce {
    0%, 100% {
        transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }

    25% {
        transform: translate(-100%, -100%) translate3d(100%, 0, 0);
    }

    50% {
        transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
    }

    75% {
        transform: translate(-100%, -100%) translate3d(0, 100%, 0);
    }
}

.score{
  text-align: center;
  font-size: 3.5dvh;
  margin: 5px;
}
#bot{
  margin-bottom: 0px;
}
#player{
  margin-top: 5px;
  margin-bottom: 0px;
}
h2{
  margin-top: 5px;
  margin-bottom: 10px;
}
#fin{
  display: flex;
  justify-content: center;
  
}
#fin button{
    width: 40dvh;
    height: 8dvh;
    margin: 20px;
    border: none;
    color: #fff;
    background-image: radial-gradient(circle, #000000 0%, #111111 100%);
    border-radius: 20px;
    background-size: 100% auto;
    font-family: inherit;
    font-size: 17px;
    padding: 0.6em 1.5em;
   }
   
   #fin button:hover {
    background-position: right center;
    background-size: 200% auto;
    -webkit-animation: pulse 2s infinite;
    animation: pulse512 1.5s infinite;
   }
   
   @keyframes pulse512 {
    0% {
        box-shadow: 0 0 0 0 #00000066;
    }

    70% {
        box-shadow: 0 0 0 40px rgba(0, 0, 0, 0%);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0%);
    }
}

@media screen and (max-width: 900px) {
  .flexbox {
    width: fit-content;
    
    flex-direction: column;
    margin: 20px auto;
}

}