* {
  font-family: albert, sans-serif;

  --blue-vienna: #0b65a8; /* - Wien-Blau*/
  --blue-cologne: #005176; /* - Köln-Blau*/
  --blue-angers: #0f1035; /* - Angers-Dunkelblau -> auch für Texte, Footerhintergrund und Linien/Rahmen usw. verwenden*/
  --logo-petrol: #009990; /* - Logo-Petrol*/
  --highlight-cyan: #dcf2f1; /* - Highlight-Helltürkis*/
  --background-light-gray: #efefef; /* - Hintergrund-Hellgrau*/
}

@font-face {
  font-family: albert;
  font-weight: 450;
  src: url("./data/Albert_Sans/AlbertSans-VariableFont_wght.ttf");
}

body {
  padding: 0;
  margin: 0;
  font-family: albert, sans-serif;
  font-size: 1rem;
}

.root {
  display: grid;
  grid-template-columns: 1fr minmax(auto, 76rem) 1fr;
  row-gap: 1rem;
  line-height: 1.5rem;
}

/* Breakpoint für Tablets (maximal 1024px Breite) */
@media (max-width: 1400px) {
  .root {
    grid-template-columns: 1fr minmax(auto, 50rem) 1fr;
    column-gap: 10rem;
    row-gap: 2.5rem;
    margin: auto;
  }
}

@media (max-width: 1024px) {
  .root {
    grid-template-columns: 1fr minmax(auto, 50rem) 1fr;
    column-gap: 5em;
    row-gap: 2.5rem;
    margin: auto;
  }
}

/* Breakpoint für kleinere Tablets und große Smartphones (maximal 768px Breite) */
@media (max-width: 768px) {
  .root {
    grid-template-columns: 1fr minmax(auto, 40rem) 1fr;
    row-gap: 1rem;
    column-gap: 7rem;
    margin: auto;
  }
}

/* Breakpoint für Smartphones (maximal 480px Breite) */
@media (max-width: 480px) {
  .root {
    grid-template-columns: 1fr 10fr 1fr;
    row-gap: 1rem;
    column-gap: .5rem;
    margin: auto;
    font-size: .7em;
  }
}

.row-span {
  grid-column: 1/-1;
}

.header {
  display: grid;
  background-image: url('./data/header.png');
  min-height: 24em;
  background-position: center;
  background-size: cover;
  grid-template-columns: subgrid;
}

.content {
  grid-column-start: 2;
}

h1 {
  align-self: center;
  margin: 0;
  grid-column: 2/2;
  font-size: 5em;
  line-height: 1.25em;
  color: white;
}

.banner {
  display: flex;
  background-color: var(--highlight-cyan);
  justify-content: center;
  align-content: center;
  min-height: 15em;
  padding: 0 2em;
  text-wrap: balance;
}

h2 {
  font-weight: 600;
  font-size: 2.5em;
  text-wrap: balance;
  text-align: center;
  margin: auto;
}

p {
  font-size: 1.3em;
  line-height: 1.5em;
  padding: 0.75em 0;

}

.resource {
  font-weight: 450;
  text-align: center;
  text-wrap: balance;
}

.box {
  border: 0.2rem solid var(--logo-petrol);
  font-size: 1.3em;
  padding: 1rem 2rem;
}

ul {
  padding: 0 .5rem 0 .5rem;
}

li {
  list-style-type: none;
  line-height: 2em;
}

.email {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-content: center;
  gap: 2em;
  max-width: 43.5rem;
  margin: 0 auto;
}

.pic-email {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5em;
  height: auto;
}

.email p {
  text-align: left;
  line-height: 1.5;
}

footer {
  grid-column-start: 2;
  height: auto;
  margin: auto;
}

.logos {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  justify-items: center;
  gap: 4.5em;
}

.logos {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

footer {
  margin-bottom: 3rem;
}

footer svg,
footer img {
  width: 200px;
}
