:root {
  font-family: Helvetica;
}

html,
body {
  margin: 0;
  padding: 0;
  background-color: #c0c0c0;
}

body {
  display: flex;
  justify-content: center;
}

.inner-wrap {
  padding: 1rem 2rem;
  width: 100%;
  max-width: 1280px;
}

a {
  font-weight: 600;
  text-decoration: none;
  color: black;
}
a:visited {
  color: black;
}

h1 {
  padding: 2rem 0rem;
}

.grids {
  display: grid;
  grid-template-columns: repeat(auto-fill, 20rem);
  gap: 2rem;
}

.grid {
  border: solid 1px black;
  border-radius: 0.5rem;
  height: 5rem;
  display: grid;
  place-items: center;
}

.grid:hover {
  background-color: rgb(167, 167, 167);
}
