@font-face {
  font-family: Milimetre;
  font-weight: 400;
  font-style: normal;
  src: url(fonts/Millimetre-Regular.otf);
}

body {
  font-family: Milimetre;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p, ul, li, img {
  margin: 0;
  padding: 0;
}

a {
  color: black;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:visited {
  color: black;
}

.title img {
  width: 100%;
}

.body img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.description {
  font-size: 1.5rem;
  padding: 1.5rem;
}

.description h1 {
  font-size: 1.5rem;
  font-weight: normal;
}

.padding-top-simple {
  padding-top: 1rem;
}

@media (min-width: 768px) {
  body {
    grid-template-columns: 1fr 45rem;
    grid-template-rows: auto 1fr;
  }

  .title {
    grid-column: 1;
    grid-row: 1;
    height: 100%;
  }

  .body {
    grid-column: 1 / span 2;
    grid-row: 2;
    position: relative;
    height: 100%;
    overflow: hidden;
  }

  .body img {
    width: 100%;
    height: 100%;
  }

  .description {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    align-content: end;
    align-items: end;
    padding-bottom: 1.25rem;
  }

  .description-all {
    grid-column: 1;
  }

  .padding-top-simple {
    padding-top: 0;
    grid-row: 1 / span 2;
    grid-column: 2;
  }

  .title img {
    width: 30rem;
  }
}