* {
  padding: 0;
  margin: 0;
}

header {
  width: 100%;
  height: 100px;
  background: url('./assets/fire.gif');
  background-size: auto 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1;
}

header h1 {
  color: rgb(0, 212, 0);
  font-style: italic;
  text-shadow: 0 0 8px yellow;
  font-size: 64px;
  font-weight: 800;
}

main {
  padding: 130px 30px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}

.photo {
  box-sizing: border-box;
  height: 450px;
  position: relative;
  border: 3px solid rgb(0, 189, 0);
  margin-bottom: 60px;
  cursor: pointer;
}

.photo:hover img {
  filter: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: hue-rotate(90deg) saturate(1.5);
}

.description {
  height: 45px;
  background: rgb(0, 189, 0);
  position: absolute;
  bottom: -45px;
  left: -3px;
  font-size: 36px;
}

.texture {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
  background: url(assets/texture.jpg);
  bottom: 0;
}