* {
  font-family: sans-serif;
  transition: all 250ms;
  box-sizing: border-box;
}

.zero {
  margin: 0;
  padding: 0;
}

body {
  height: 100dvh;
  gap: 25px;
  flex-wrap: wrap;
}

.center {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.item {
  border: 1px,solid,gray;
  border-radius: 10px;
  width: 200px;
  height: 100px;
} .item:hover {
  background-color: gainsboro;
}

.title {
  font-size: small;
  text-decoration: none;
  text-transform:uppercase;
  border-radius: 10px;
  color: black;
  height: 100%;
  width: 100%;

} .title:hover {
  font-weight: bold;
  letter-spacing: 0.125em;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 15px;
}