
.tee {
  
  border: #000 2px solid;
  padding: 24px;  
  
}

#hole-container {    
  width: 100%;  
}

#hole {
  position: relative;
  background-color: #4CAF50;
  height: 100px;
  margin: 0px;
  padding: 0;
}

#ball {
  position: absolute;
  top: 50%;
  left: 1%;
  transform: translate(-50%, -50%);
  background-color: #FFF;
  border-radius: 5px;
  border: #000 1px solid;
  height: 10px;
  width: 10px;   
}

#pin {
  position: absolute;
  top: 50%;
  left: 1px;
  transform: translate(-50%, -50%);
  background-color: #000;
  border-radius: 15px;
  height: 15px;
  width: 15px;
  box-shadow: inset 0 0 15px #333;
}

#message {
  font-size: medium;
  font-weight: 700;
}

button {
  font-size: 16px;
  padding: 10px 20px;
}

#power-buttons {
  margin-bottom: 20px;
}

#power-buttons button {
  font-size: 16px;
  padding: 10px 20px;
  margin-right: 10px;
}

#accuracy-counter {
  font-size: 24px;
  margin-bottom: 20px;
  width: 250px;
  color: #FFF;
  text-align: center;
  border: #000 1px solid;
  height: 25px;
  background-color: #4CAF50;
}

#accuracy-counter-inside {
  margin: 0 auto;
  width: 0px;
  height: 25px;
  background-color: rgba(0, 0, 0, 0.384);
}

#swing {
  font-size: 20px;
  padding: 10px 20px;
  background-color: #ddd;
  border: none;
  border-radius: 4px;
  cursor: not-allowed;
}

#swing:enabled {
  background-color: #4CAF50;
  color: #fff;
  cursor: pointer;
}
