* {
  box-sizing: border-box;
}

@font-face {
  font-family: "ice age font";
  src: url(./font/ICE_AGE.ttf);
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
  background-image: url(./images/background.jpg);
  font-family: "ice age font", sans-serif;
  font-size: 30px;
}

.grid {
  display: flex;
  flex-direction: row;
  border: 0px solid grey;
  width: 600px;
  height: 600px;
  flex-wrap: wrap;
  /* margin-left: 25%; */
}

.grid div {
  width: 10%;
  height: 10%;
  /* border: 1px solid rgb(1, 206, 1); */
}
.alien {
  background-image: url(./images/Manny_full_size.png);
  background-size: contain;
}

.player {
  background-image: url(./images/Scrat1.png);
  background-size: contain;
}

.acorn {
  background-image: url(./images/acorn.png);
  background-size: contain;
}
.ice {
  background-image: url(./images/ice.png);
  background-size: contain;
}
.explosion {
  background-image: url(./images/d7ac4f38b77abe73165d85edf2cbdb9e_w200.gif);
  background-size: contain;
}
.smash {
  background-image: url(./images/smash.gif);
  background-size: contain;
}
.count {
  display: none;
  font-size: 300px;
  transform: translate(0px, -350px);
  font-family: "ice age font", sans-serif;
}
.start {
  transform: translate(0px, -350px);
  font-family: "ice age font", sans-serif;
  font-size: 150px;
  background-color: Transparent;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
  overflow: hidden;
}
.reset {
  font-family: ice age font, sans-serif;
  font-size: 70px;
  background-color: Transparent;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
  overflow: hidden;
}
p {
  font-size: 40px;
  margin-bottom: 0%;
  display: inline-block;
}
section {
  display: flex;

  width: 600px;
  align-items: center;
  justify-content: space-between;
}
.gameOver {
  font-size: 100px;
  position: absolute;
  margin-bottom: 300px;
}
