body {
  font-family: "Ledger", serif;
  font-weight: 400;
  font-style: normal;
  background-color: #E1498F;
}

main {
  max-width: 500px;
  margin: auto;
  margin-bottom: 4em;
  padding-left: 1em;
  padding-right: 1em;
  position: relative;
}

h1 {
  font-size: 2em;
  margin-bottom: 0;
}

h2 {
  font-size: 2em;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 4em;
}

.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  padding-top: 2em;
  padding-bottom: 4em;
}

a {
  color: black;
}

a:link {
  color: black;
}

a:visited {
  color: black;
}

a:hover {
  color: black;
}

a:active {
  color: black;
}

.stoerer h1, .stoerer p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.stoerer {
  /* --- Positioning --- */
  position: fixed;
  bottom: 25px;
  right: 25px;

  /* --- Aesthetics & Layout --- */
  background-color: #fae319;
  color: white;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease-in-out, background-color 0.2s;
  font-weight: bold;
  
  /* Use flexbox to perfectly center the text inside the circle */
  display: flex;
  flex-direction: column; /* Stack children vertically */
  justify-content: center;
  align-items: center;
  text-align: center;
  
  /* Add some padding so text doesn't hit the edges */
  padding: 1rem; 

  /* --- Circular Shape & Proportional Scaling --- */
  /* Set an equal, responsive width and height */
  width: clamp(110px, 13vw, 200px);
  height: clamp(110px, 13vw, 200px);

  /* This makes the shape a perfect circle */
  border-radius: 50%;
  
  /* Adjust font size to scale appropriately within the circle */
  font-size: clamp(14px, 2vw, 22px);
  transform: rotate(10deg);
  /* font-style: italic; */
}

/* Remove default margins from h1 and p inside the button */
.stoerer h1, .stoerer p {
  margin: 0;
  padding: 0;
  color: black; /* Ensure text color is white */
}

/* Style the H1 inside the button */
.stoerer h1 {
  font-size: clamp(14px, 4vw, 20px);
  font-weight: 900; /* Bolder */
  line-height: 1.1;
}

/* Style the p inside the button */
.stoerer p {
  font-size: clamp(12px, 1.5vw, 18px);
  font-weight: normal; /* Lighter weight than the heading */
}