* {
  padding: 0;
  margin: 0;
}

body {
  /* background: rgb(0, 53, 0); */
}

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

header {
  display: flex;
  align-items: center;
  position: relative;
}

header img {
  width: 150px;
  position: absolute;
  left: 30px;
  top: 10px;
  z-index: -1;
}

.photo {
  box-sizing: border-box;
  aspect-ratio: 1 / 1.2;
  position: relative;
}

.photo:hover::before {
  border: 3px solid rgb(0, 189, 0);
}

.photo:hover .description {
  display: block;
}

img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  object-fit: cover;
}

h1 {
  color: rgb(0, 255, 0);
  font-style: italic;
  /* text-align: center; */
  padding-top: 30px;
  padding-left: 30px;
}

.description {
  background: rgb(0, 189, 0);
  position: absolute;
  top: 0;
  padding: 0 2px;
  font-size: 36px;
  display: none;
}

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