img {
  height: 90vh;
  animation: shake linear infinite;
  margin: 0 auto;
  width: max-content;
  display: flex;
}

@keyframes shake {
  0% {
    transform: rotate(0deg);
  }

  33% {
    transform: rotate(-5deg);
  }

  66% {
    transform: rotate(5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}
  .button1 {
    font-family: Arial, sans-serif; 
    font-weight: bold;
    border: 2px solid black;
    display: inline-block;
    padding: 10px 20px;
    background-color: gold;
    color: black;
    text-decoration: none;
    border-radius: 0px;
    position: fixed;
    top: 1em;
    left: 1em;
    
    }
    .button {
    font-family: Arial, sans-serif; 
    font-weight: bold;
    border: 2px solid black;
    display: inline-block;
    padding: 10px 20px;
    background-color: gold;
    color: black;
    text-decoration: none;
    border-radius: 0px;
    position: fixed;
    top: 1em;
    right: 1em;
    }
  #wood {
    user-select: none;
    position: fixed;
    top: 1em;
    left: 80em;
    font-family: Arial, sans-serif; 
    font-weight: bold;
    }
    
    #log {
      user-select: none;
      position: fixed;
      top: 1em;
      left: 77em;
      width: 3rem;
      height: 3rem;
      }
      #timer {
  user-select: none;
  display: flex;
  vertical-align: middle;
  align-self: center;
  font-family: Arial, sans-serif; 
  font-weight: bold;
}
body {
  height: 100%;
  width: 100%;
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: center;
}
.permanently-off {
  display: none !important;
}