
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&family=Krona+One&display=swap');

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: white;
}

/* ===== HEADER ===== */
header {
  background-color: #001f4d;
  position: relative;
}

/* Top-Bild & Titel */
.top-image {
  height: 150px;
  background: url('Bilder/Adele_Bild1..jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.main-title {
  font-family: 'Krona One', sans-serif;
  font-size: 90px;
  color: #1a1a3d;
  margin: 0;
  letter-spacing: 2px;
}

/* Untertitel */
.subtitle {
  font-family: 'Indie Flower', cursive;
  font-size: 80px;
  color: #b3ccff;
  background-color: #001f4d;
  height: 120px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  margin: 0;
}

/* ===== NAVBAR ===== */
.navbar {
  background-color: #99ccff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100px;
  font-family: 'Indie Flower', cursive;
  margin: 0;
  padding: 0;
}
.navbar a {
  text-decoration: underline;
  color: #000033;
  font-size: 36px;
  font-weight: bold;
}

/* ===== MAIN ===== */
.background-container {
  position: relative;
  width: 100%;
}
.bg-full {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== CORNER BOX ===== */
.corner-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background-color: #99ccff;
  color: #000033;
  border-top-right-radius: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5em;
  font-size: 1.4em;
  font-weight: bold;
}