@import url('https://fonts.googleapis.com/css2?family=Rye&display=swap');

body {
    font-family: 'Rye', Arial, sans-serif;
    color: #fff2db;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-image: url('background.svg'); /* Pfad zur SVG-Datei */
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
  }
  
  h1 {
    font-size: 2em;
    font-weight: normal;
}

  .container {
    text-align: center;
    display: flex;
    flex-direction: column; /* Änderung: Elemente untereinander anordnen */
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Abstand zwischen den Containern */
  }
  
  button {
    width: 250px; /* Breite des Buttons */
    height: 250px; /* Höhe des Buttons, gleich der Breite */
    font-size: 2em;
    font-family: 'Rye', Arial, sans-serif;
    color: #fff2db;
    border: 10px solid black; /* Schwarzer Rand */
    border-radius: 50%; /* Rund */
    cursor: pointer;
    box-shadow:inset 30px 30px 40px #ff8a8a, 10px 10px 40px rgba(0, 0, 0, 0.5);
    transition: background 0.5s ease, box-shadow 1.5s ease;
    background: radial-gradient(circle, #ff3333, #8e0000); /* Radialer Farbverlauf von dunkelrot zu hellrot */
  }
  
  button:hover {
    background: radial-gradient(circle, #ff6161, #e30000); /* Dunklerer Farbverlauf bei Hover */
  }
  
  .custom-svg {
    max-width: 100%;
    height: auto;
    width: 100%;
    filter: drop-shadow(20px 20px 15px black);
  }