* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  height: 93vh;
  width: 100vw;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

.starter {
  background-image: url(./starter.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-blend-mode: overlay;
  background-color: #444;
}

.main--grid {
  background-image: url(./bg.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 105% 105%;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: center;
  font-weight: 900;
  color: white;
  max-width: 100%;
  height: 100%;
  border: 8px solid olivedrab;
}

.main__picks {
  padding: 0.6rem;
  text-align: center;
  background-color: black;
  font-size: 1.5rem;
}
.main__picks img {
  width: 9rem;
}

#gameboard .mp {
  padding: 0;
}

.main__boxes {
  border: 0.1px solid white;
}

.hit {
  background-color: green;
}

.miss {
  background-color: red;
}

button {
  width: 100%;
  height: 4.3rem;
  background-color: rgba(0, 0, 0, 0.8);
  border: 3px solid white;
}

#scoreboard button {
  background-color: olivedrab;
  width: 13rem;
  border-radius: 1rem;
  font-size: 1.3rem;
  font-weight: 900;
  padding: 0 1rem;
}

.dashboard {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 900;
}
.dashboard p {
  display: inline;
  padding: 0 1rem;
}

span {
  font-weight: 100;
}

header {
  width: 100vw;
  height: 100vh;
  background-color: olivedrab;
  text-align: center;
  font-size: 5rem;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: white;
}
header img {
  width: 15rem;
}
header p {
  font-size: 2rem;
  font-weight: 900;
}

@media screen and (max-width: 700px) {
  header {
    font-size: 3rem;
  }
  header img {
    width: 10rem;
  }
  header p {
    font-size: 2rem;
  }
  .dashboard p {
    display: block;
    padding: 0 0;
  }
  .main__picks img {
    width: 3rem;
  }
}
@media screen and (max-width: 400px) {
  .main__picks {
    padding: 0rem;
  }
  header {
    font-size: 2rem;
  }
  header img {
    width: 5rem;
  }
  header p {
    font-size: 1.5rem;
  }
}
.hide {
  display: none;
}