
.header {
  background-color: lightcyan;
  color: black;
  text-align: center;
  padding: 1em;
}


body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1004%26quot%3b)' fill='none'%3e%3crect width='1440' height='560' x='0' y='0' fill='rgba(24%2c 55%2c 86%2c 1)'%3e%3c/rect%3e%3cpath d='M 0%2c544 C 57.6%2c478 172.8%2c231.4 288%2c214 C 403.2%2c196.6 460.8%2c482.6 576%2c457 C 691.2%2c431.4 748.8%2c87.6 864%2c86 C 979.2%2c84.4 1036.8%2c456.8 1152%2c449 C 1267.2%2c441.2 1382.4%2c127.4 1440%2c47L1440 560L0 560z' fill='rgba(39%2c 74%2c 110%2c 1)'%3e%3c/path%3e%3cpath d='M 0%2c35 C 96%2c104.6 288%2c388.2 480%2c383 C 672%2c377.8 768%2c-4.2 960%2c9 C 1152%2c22.2 1344%2c361 1440%2c449L1440 560L0 560z' fill='rgba(61%2c 85%2c 111%2c 1)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1004'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
  font-family: "Tagesschrift", system-ui;
  font-weight: 400;
  font-style: normal;
}






.main-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 80px;
  gap: 20px;
  max-width: 20;
  height: 1000px;
}

.sidebar {
  flex: 1;
  background-color: lightcoral;
  padding: 50px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;

}

.sidebar:hover {
  transform: scale(1.05);
}
.sidebar img {
  width: 100%;
  border-radius: 10px;
  height: auto;
}

h1, h2, h3 {

  font-family: "Lilita One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

