/* Together for a kinder web. www.dominik.ooo
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;1,400;1,500&family=Schibsted+Grotesk:wght@400;500&display=swap");
:root {
  --grey: rgb(217, 217, 217);
  --border: 2px dotted var(--accent);
  --accent: rgb(8, 71, 53);
  --text-bigger: 1.4rem;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 24px;
  width: 100%;
  height: 100%;
  cursor: url("../assets/cursor.svg"), auto;
}

body {
  color: var(--accent);
  width: 100%;
  height: 100%;
  padding: 1rem;
  font-family: "Lora", serif;
  font-weight: 400;
  line-height: 1.2;
}

.about-text p {
  margin-bottom: 1rem;
}
.about-text p:last-child {
  margin-bottom: 0;
}

.wrapper {
  font-size: 1rem;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 3fr 1fr -webkit-min-content;
  grid-template-rows: 3fr 1fr min-content;
  gap: 1rem;
  height: 100%;
}
.wrapper img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  margin-left: auto;
  -o-object-fit: contain;
     object-fit: contain;
  justify-self: end;
  -o-object-position: right top;
     object-position: right top;
}
.wrapper .header {
  max-height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.wrapper .header > p:first-child {
  margin-bottom: 1rem;
  font-size: var(--text-bigger);
}
.wrapper .info,
.wrapper .newsletter {
  grid-column: span 2;
}
.wrapper .about-text {
  font-size: min(3vh, 1.5rem);
}

a {
  color: inherit;
  text-decoration: none;
  text-decoration-thickness: 3px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  font-style: italic;
}

a {
  -webkit-transition: 0.4s opacity ease;
  transition: 0.4s opacity ease;
}

a:hover {
  opacity: 0.5;
}

.newsletter {
  padding-top: 1rem;
  border-top: var(--border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: center;
  font-size: min(2.8vh, 1rem);
}

.btn-newsletter {
  font-size: 1rem;
  text-decoration: none;
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: block;
  margin: auto;
  margin-top: 1rem;
  font-weight: 400;
  padding: 0.4rem 1rem;
  border: 1px solid var(--accent);
  margin-bottom: 0.5rem;
  white-space: nowrap;
  border-radius: 25px;
}

.info {
  padding-top: 1rem;
  border-top: var(--border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: min(3vh, 1.5rem);
}

.img-mobile {
  display: none !important;
}

/* Media query for mobile devices */
@media (max-width: 767px) {
  html {
    font-size: 20px;
  }
  .info {
    padding: 1rem 0 0 0;
    font-size: 1rem;
    text-align: center;
  }
  .info p {
    margin-bottom: 1rem;
  }
  .info p:last-child {
    margin-bottom: 0rem;
  }
  .info a {
    font-size: 1.5rem;
    white-space: nowrap;
    display: block;
  }
  .about-text p {
    margin-bottom: 1rem;
  }
  .about-text p:last-child {
    margin-bottom: 1rem;
  }
  .newsletter {
    font-size: 1rem;
    line-height: 1.4;
  }
  .btn-newsletter {
    margin-bottom: 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
  }
  .wrapper {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    height: auto;
  }
  .wrapper img {
    display: none;
  }
  .wrapper .about-text {
    font-size: 1.5rem;
  }
  .wrapper .img-mobile {
    display: block !important;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }
  .wrapper .header {
    display: inline;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-height: 100%;
  }
  .wrapper .header > p:first-child {
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=dvd.css.map */