@import url("https://fonts.googleapis.com/css2?family=Poppins&family=Potta+One&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: lightseagreen;
  color: darkblue;
  /*display: flex;*/
  align-items: center;
  justify-content: center;
  background: url("assets\\th3.png");
  background-size: 2500px;
}

html,
body {
  margin: 0;
  height: 100%;
  /*display: flex;*/
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
}
a{
  text-decoration: none;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
  background-color: darkviolet;
  color: white;
  border-radius: 25px;
  margin-top: 30px;
  margin-bottom: 80px;
  display: inline-block;
}
a:hover{
  opacity: 0.8;
}
.back{
  
  text-align: center;
}
h1{
  margin-top: 70px;
}

.container {
  position: relative;
  padding: 20px;
}

.score_container {
  font-size: 16px;
  text-align: center;
  margin: 10px 0;
}

#restart_game {
  margin: 0 auto;
  display: block;
  padding: 9px 5px;
  background: #212121;
  color: #00ff80;
  font-weight: bold;
  border: none;
}

.title {
  font-size: 16px;
}

.game {
  height: 400px;
  width: 400px;
  background: #e0e0e0;
  margin: 0 auto;
}

.tile {
  float: left;
  margin: 0;
  content: "";
  background: #e0e0e0;
  box-sizing: border-box;
  position: relative;
  display: block;
  box-shadow: inset 0px 0px 0px 1px rgba(0, 134, 255, 0.05);
}

.body {
  background: #bdbdbd;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
}

.head {
  background: black;
}

.fruit {
  background: #23a141;
  border-radius: 5px;
}

.instructions {
  font-size: 16px;
  color: #757575;
  padding-bottom: 20px;
}  
