/* COLORS */
/* FONTS */
#node-startseite #content h1 {
  font-size: 200px;
}
#node-startseite #blog {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  background-color: #111111;
  padding: 200px 0 100px 0;
  z-index: 20;
}
#node-startseite #blog .h1 {
  color: #fff;
}
#node-startseite #blog .h1.animated strong {
  color: #ef0003;
}
#node-startseite #blog .blog {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 50px;
  grid-template-rows: repeat(4, 1fr);
}
#node-startseite #blog .blog .blogbeitrag a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  background-color: #fff;
  gap: 10px;
  padding: 15px 20px;
}
#node-startseite #blog .blog .blogbeitrag a .titel {
  font-weight: 700;
  transition: color 0.5s ease;
}
#node-startseite #blog .blog .blogbeitrag a .icon-arrow-right {
  color: #ef0003;
  display: block;
  transition: transform 0.5s ease;
}
#node-startseite #blog .blog .blogbeitrag a:hover .titel {
  color: #ef0003;
}
#node-startseite #blog .blog .blogbeitrag a:hover .icon-arrow-right {
  transform: translateX(5px);
}
#node-startseite #blog .button {
  width: 100%;
}
