/* Normalisering af billeder */
img {
  width: 100%;
  height: 96%;
}

h1 {
  text-align: center;
  font-size: 60px;
  margin-top: 100px;
}

h2 {
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
}

.tekst {
  text-align: center;
  margin-top: 50px;
  font-size: 15px;
  font-style: italic;
}

.grid_1-1-1-1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin: 100px;
  gap: 20px;
}
.mig1,
.mig2,
.mig3,
.mig4 {
  box-shadow: 0 22px 28px 0 rgb(0 0 0 / 30%);
}
@media (max-width: 900px) {
  h1 {
    font-size: 50px;
  }

  .grid_1-1-1-1 {
    grid-template-columns: 1fr 1fr;
    margin: 40px;
  }
}

@media (max-width: 650px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 18px;
  }

  .tekst {
    font-size: 15px;
  }
  .grid_1-1-1-1 {
    grid-template-columns: 1fr 1fr;
    margin: 30px;
  }
}
