*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --bg-color: rgb(34, 43, 28);
  --green-color: rgba(34, 43, 28, 1);
  --green-color-85: rgba(34, 43, 28, 0.85);
}

html, body {
  padding: 0;
  margin: 0;
  min-height: 100vh;
  background-image: linear-gradient(to top left, rgb(50, 59, 45), rgb(84, 95, 57));
}

body {
  min-height: 100vh;
  height: auto;
  overflow: scroll;
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body .lucas {
  position: absolute;
  top: 5em;
  right: 3.5em;
  width: 15%;
  height: auto;
  transition: all 0.4s ease-in-out;
}
body .outer {
  position: relative;
}
body .outer:has(.wrapper:hover) .lucas {
  top: 1.5em;
  transform: rotate(-5deg);
}
body .outer .wrapper:hover {
  transform: scale(1.025) rotate(5deg);
  box-shadow: 0 50px 80px -50px rgb(0, 20, 0);
}
body .wrapper {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background-color: var(--bg-color);
  padding: 1em;
  margin: 5em 2.5em 3em 2.5em;
  display: grid;
  gap: 1em;
  max-width: 600px;
  box-shadow: 0 40px 70px -50px rgba(0, 20, 0, 0.75);
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "img1 img2" "logo logo" "img3 img4" "img5 img6";
}
@media (min-width: 600px) {
  body .wrapper {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "img1 img2 img3" "logo logo logo" "img4 img5 img6";
  }
}
body .wrapper .box.box--logo {
  grid-area: logo;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: auto;
  padding: 0.1vw 0.1vw;
}
body .wrapper .box.box--logo img {
  width: 60%;
}
body .wrapper {
  transition: all 0.2s ease-in-out;
}
body .box {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1;
}
body .box.box--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body footer {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 2em;
  font-size: 18px;
  line-height: 1.3em;
}
body footer h2 {
  font-size: 18px;
  margin: 0.75em 0;
  font-weight: normal;
}
body footer p {
  margin: 0.75em 0;
}
body footer em {
  color: rgba(255, 255, 255, 0.4);
  font-style: normal;
  font-size: 14px;
}
body footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
body footer a:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=styles.css.map */