/**
*
*
Was die folgenden Angaben sind und bewirken schaut ihr euch am besten hier an:
@link https://www.w3schools.com/css/default.asp
*/

body {
  max-width: 600px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5rem;
  padding-top: 3rem;
}

/* hier ist die Darstellung der Links */
a {
  color: rgb(220, 20, 60);
  font-weight: 700;
  /* Diese Angabe sorgt für einen sanften Übergang der Farbänderung */
  transition: all 0.5s ease;
}

a:hover {
  color: rgb(0, 0, 0);
}

h1 {
  font-family: "Bungee Shade", cursive;
  padding-top: 1rem;
  padding-bottom: 2rem;
}

figure {
  width: 100%;
  margin: 0;
}

img {
  width: 100%;
}

figcaption {
  font-size: 0.75rem;
  font-weight: 700;
}
