@font-face{font-family:'harbour';src:url('lib/PFPlasmaticHeavy-Regular.ttf')}
@font-face{font-family:'harbour_2';src:url('lib/courbd.ttf')}

body{
    margin: 0;
    user-select: none;
    font-family:'harbour', cursive;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden;
    }
    
    #full-area {
        width: 100%;
        height: 100vh;
        user-select: none;
        background-size: cover;
        overflow: hidden;
        background: black

      }
      #full-area #game-area {
        width: 1024px;
        height: 600px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1);
        border-radius: 0px;
        overflow: hidden;
        background-size: cover;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.124);
        background-color: transparent;
        background: url('./media/apothetis-back.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        display: block;
      }

   /*win screen*/

   #win{
    position: absolute;
    top:45%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 550px;
  }

  #win_screen{
    position: absolute;
    width: 1024px;
    height: 600px;
    display: none;
  }

  #wintext{
    position: absolute;
    top:47%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 30px;
    text-align: center;
  }

  #again{
    position: absolute;
    top:78%;
    left: 50%;
    transform: translate(-50%,-50%);
    cursor: pointer;
  }

  /*end win screen*/

  #bar{
    position: absolute;
    width: 100%;
    height: 10%;
    top: 90%;
    background-color: transparent;
    display: flex;
    margin-left: 460px;
    align-items: center;
  }

    /* timer */
   

.stopwatchApp {
  position: absolute;
  color: white;
  font-size: 25px;
  height: auto;
  z-index: 99;
  margin-top: -30px;

}
.stopwatchApp .timeDisplay {

  margin: 40px 0 20px;
  display: flex;
  align-items: center;
  z-index: 99;
  

}
.stopwatchApp .buttonWrapper {
  display: flex;
  gap: 40px;
}
.stopwatchApp .buttonWrapper button {
  font-size: 1.5rem;
  padding: 10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 999;
  position: fixed;
}


button.startStopwatch {
  color: #008000;
  background-color: rgba(0, 128, 0, 0.5);
  border: 2px solid green;
  transition: ease-in-out 250ms;
  cursor: pointer;
  display: none;
}

button.startStopwatch:hover {
  color: #006600;
  background-color: rgba(0, 102, 0, 0.5);
  border: 2px solid #006600;
  cursor: pointer;
}

button.startStopwatch:active {
  color: #004d00;
  background-color: rgba(0, 77, 0, 0.5);
  border: 2px solid #004d00;
  cursor: pointer;
}

#boxes{
  position: absolute;
  display: flex;
  width: 100%;
  justify-content: center;
  top: 72%;
  z-index: 0;
}





#items{
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  width: 1024px;
  top: 21%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.dragg{
  position: relative;
  width: 100px;
  margin-left: -3px;
  margin-top: 3px;
  cursor: pointer;
 
}

.drop1{
  width: 70px;
  margin-left: 4px;
}

.drop1:not(.drop) {
    background: rgb(59 32 19 / 90%);
    border: 1px solid #b4936e;
}

.dragg:active{
  z-index: 99;
}

#msg{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 1024px;
  height: 600px;
  display: none;
}

#msg1 {
  position: absolute;
   height: auto;
  width: 450px;
  top: 20%;
  transform: (-50%,-50%);
  left: calc(50% - 400px/2); 
 
  animation: boing 1s linear;
  animation-fill-mode: forwards;
}

@keyframes boing {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}
