body {
    margin: 0;
    background: #eeeeee;
    overflow: hidden;
  }

p {
  margin: 0px;
}

canvas {   
    display : block;   
    /* margin : 100px auto; */
    border : 2px solid black;
} 

#container {
    display: flex;
    justify-content: center;
    align-items: center;
    height:100vh;
    gap: 18px;
  }
  
#game-container {
    /* Define width or allow flex-grow to distribute space */
    /* flex: 1; Example: takes up equal space */
    /* display : block;   */
    /* margin : 100px auto; */
    /*padding: 10px;*/
  }

#game-column {
    display: flex;
    flex-direction: column;
  }

#pageHeaderText {
    text-align: left;
    font-size: 30px;
    margin-left: 0px;
    margin-bottom: 5px;
  }
  
#text-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    height: 450px;
    max-width: 250px;
    gap: 20px;
  }

  #messageFromHighScorer {
    margin-top: 2px;
  }

  #currentHighScore {
    color: rgb(90, 90, 90);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
  }

  #currentMessage {
    color: rgb(90, 90, 90);
    font-family: Arial, Helvetica, sans-serif;
    margin-left: 16px;
    padding-left: 6px;
    margin-top: 10px;
    max-width: 160px;
    word-wrap: break-word;
    font-size: 18px;
    border-left: 1px solid rgb(90, 90, 90);
  }

.basic-text {
    font-family: 'Times New Roman', Times, Georgia, serif, sans-serif;
    font-size: 16px;
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: white;
  color: black;
  padding: 20px;
  width: 300px;
  text-align: center;
  border : 2px solid black;
}

.modal-content input {
  width: 100%;
  margin: 10px 0;
  box-sizing: border-box;
}

#newHighScoreHeader {
  font-size: 20px;
  margin: 5px 0 5px 0;
}

/* input.invalid, */
input.invalid:focus {
  border: 2px solid red;
  outline: none;
}


/*
#game-container {
    border : 20px solid black;
}
*/

#pageFooter {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 4px;
  margin-left: 2px;
  margin-right: 2px;
  font-size: 12px;
  color: rgb(90, 90, 90);
}