html, body{
    touch-action: manipulation;
}

body {
    background-color: whitesmoke; 
    font-family: Poppins, Arial, sans-serif;
}

.title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    position: absolute; /* position the div absolutely */
    left: 50%; /* move the div 50% to the left */
    top: 45%; /* move the div 50% to the top */
    transform: translate(-50%, -50%); /* move the div back to the center */
}

h1 {
    font-family: Poppins, Arial, sans-serif;;
    font-size: 48px;
    margin: 0px;
    top: 0;
    left: 0;
}

h2 {
    font-family: Poppins, Arial, sans-serif;
    font-size: 18px;
    margin: 0;
    padding: 10px;
    padding-bottom: 20px;
    top: 0;
    left: 0;
    color: #181817;
}

h3 {
    font-family: Poppins, Arial, sans-serif;
    font-size: 14px;
    margin: 0;
    padding-bottom: 20px;
    top: 0;
    left: 0;
    color: darkslategrey;
}

#give-up-btn{
    font-size: 18px;
}

#give-up-btn:hover{
    background-color:red;
    color: white;
}

.timer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
}

.timer {
    background-color: black;
    padding: 10px;
    border-radius: 10px;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.high-score-container {
    margin-bottom: 20px;
}

  
  .flash-green {
    background-color: green;
    color: white;
  }

button {
    font-size: 18px;
    background-color: white;
    color: black;
    border: 2px solid black;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
}

button:hover {
    background-color: darkgreen;
    color: white;
}

#high-score {
    margin-top: 20px;
    font-size: 18px;
    color: black;
    padding: 20px;
}