body {
  background-color: #bdbdbd;
  font-family: monospace;
  color: #292929;
  margin: 0;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.container {
  text-align: center;
  max-width: 1000px;
  width: 100%;
}

.header-text {
  font-size: 64px;
  margin-bottom: 10px;
  color: #292929;
}

.subtext {
  font-size: 24px;
  margin-bottom: 40px;
  color: #292929;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.grid-item {
  display: block;
  position: relative;
  overflow: hidden;
  border: 2px solid #292929;
  transition: transform 0.2s;
}

.grid-item img {
  width: 100%;
  height: auto;
  display: block;
}

.grid-item:hover {
  transform: scale(1.03);
}
