header {
  background: linear-gradient(15deg, #DD8DFF, #61FFA8);
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
header > div {
  position: relative;
  width: 80%;
  padding: 25px 40px;
}
header > div p {
  line-height: 30px;
  font-family: Homenaje;
  font-size: 2.2em;
}
header img {
  border-radius: 0 5px 5px 0;
  max-width: 20%;
  object-fit: cover;
}

main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px 35px;
}
main .evidence {
  grid-column-end: span 2;
  display: grid;
  grid-template-areas: "txt img" "link img";
  grid-template-columns: 1fr 500px;
  grid-template-rows: 1fr max-content;
  gap: 10px;
}
main .evidence section {
  grid-area: txt;
}
main .evidence section .overtitle {
  font-family: Homenaje;
  margin: 0;
  font-size: 1.5em;
}
main .evidence div {
  grid-area: img;
  display: flex;
  gap: 10px;
}
main .evidence div img {
  width: 10px;
  object-fit: contain;
  align-self: flex-end;
  flex: 1 1 auto;
  border: 3px solid linear-gradient(15deg, #DD8DFF, #61FFA8);
  filter: grayscale(100%);
  transition: 0.5s;
  cursor: pointer;
}
main .evidence div img:hover {
  filter: grayscale(0);
}
main .evidence > p {
  grid-area: link;
  margin: 0;
  background: linear-gradient(15deg, #DD8DFF, #61FFA8);
}
main .evidence > p a {
  display: inline-block;
  padding: 6px 15px 5px;
}

footer {
  padding: 25px 40px;
  background: linear-gradient(15deg, #DD8DFF, #61FFA8);
}
footer form {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
footer form input,
footer form textarea,
footer form button {
  border: 0;
  border-radius: 2px;
  padding: 10px 15px;
  font-family: Inter;
  font-size: 16px;
}
footer form textarea {
  height: 150px;
  resize: none;
}
footer form div {
  display: flex;
  column-gap: 15px;
  align-items: center;
}
footer form div button {
  text-wrap: nowrap;
  border: none;
  background: #8d03ff;
  color: white;
  cursor: pointer;
  transition: 0.2s;
}
footer form div button:hover {
  background: white;
  color: #8d03ff;
}
footer form div button:active {
  background: #ccc;
  color: linear-gradient(15deg, #DD8DFF, #61FFA8);
  transform: translate(1px, 1px);
}
footer form div button:disabled {
  background: gray;
  color: #ccc;
  cursor: progress;
}

#thickbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
#thickbox div {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
#thickbox img {
  max-width: 95%;
  max-height: 95%;
}
#thickbox span {
  display: block;
  position: absolute;
  padding: 5px 20px;
  font-size: 3em;
  color: white;
  cursor: pointer;
  text-shadow: 0 0 10px black;
}
#thickbox .back,
#thickbox .forward {
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}
#thickbox .back {
  left: 0;
}
#thickbox .forward {
  right: 0;
}
#thickbox .close {
  top: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  header > div {
    padding: 20px 20px;
  }
  header > div p {
    margin-bottom: 50px;
  }
  main {
    grid-template-columns: 1fr;
  }
  main .evidence {
    grid-column-end: span 1;
    grid-template-areas: "txt" "img" "link";
    grid-template-columns: 1fr;
  }
}
@media print {
  header {
    padding-top: 0;
    background: initial;
  }
  header > div {
    padding: 20px 0;
    background: initial;
  }
  header > div h1 {
    margin: 0;
  }
  main {
    grid-gap: 0 25px;
  }
}

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