* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Share Tech", sans-serif;
}

/*GRID CONTAINER*/
.container {
  display: grid;
  height: 100vh;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 0.5fr 2fr 2fr;
  grid-template-areas: "header header" "message message" "input scoreBoard";
}

/*TITLE*/
.header {
  margin-top: 40px;
  font-family: "Goldman", cursive;
  font-size: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-area: header;
}

/*MESSAGE AND ?*/
.message {
  grid-area: message;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.messageNumber {
  background-color: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 140px;
  height: 250px;
  width: 250px;
}

.messageText {
  font-size: 30px;
  margin: 15px 0px;
}

/*INPUT FIELD*/
.input {
  margin: 0px 30px;
  font-size: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  grid-area: input;
}

.textBox {
  font-size: 20px;
  height: 60px;
  width: 135px;
  margin: 0px 20px;
  text-align: center;
}

/*SCORE BOARD*/
.scoreBoard {
  margin: 0px 30px;
  font-size: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  grid-area: scoreBoard    ;
}

.text {
  margin: 0px 20px 5px 20px;
}

/*BUTTON STYLE*/
.btn1,
.btn2 {
  font-size: 16px;
  color: black;
  border: 0;
  border-radius: 50px;
  padding: 20px 15px;
  background-color: rgb(231, 231, 231);
  margin: 15px 20px;
  width: 135px;
  cursor: pointer;
}

/*HOVERS*/
.btn1:hover,
.btn2:hover {
  background-color: black;
  color: white;
  transition: 0.3s ease-in-out;
}

.textbox:hover {
  background: blue;
}

/*MEDIA*/

@media (max-width: 768px) {
  .header {
    margin-top: 30px;
    font-size: 40px;
  }

  .scoreBoard {
    font-size: 22px;
  }
  .textBox {
    height: 53px;
    width: 132px;
  }
}

@media (max-width: 500px) {
  .container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 0.2fr 1fr 1fr;
    grid-template-areas: "header header" "message message" "input scoreBoard";
  }
  .header {
    margin-top: 30px;
    font-size: 40px;
  }

  .text {
    font-size: 17px;
  }

  .input {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .scoreBoard {
    margin: 0;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .textBox {
    margin: 0;
    height: 43px;
    width: 122px;
  }

  .btn1,
  .btn2 {
    font-size: 16px;
    color: black;
    border: 0;
    border-radius: 50px;
    padding: 20px 15px;
    background-color: rgb(231, 231, 231);
    margin: 15px 10px;
    width: 125px;
    cursor: pointer;
  }
}
