.titlebar {
  position: fixed;
  /* Fix the titlebar to the top */
  top: 0;
  /* Position it at the top of the viewport */
  left: 0;
  /* Position it at the left of the viewport */
  width: 100%;
  /* Span the entire width of the viewport */
  height: 100px;
  /* Set a desired height for the titlebar */
  display: flex;
  /* Arrange content horizontally */
  justify-content: center;
  /* Center the logo horizontally */
  align-items: center;
  background-color: transparent;
  /* Center the logo vertically */
}

.titlebar img {
  height: 10vh;
  /* Make the logo fill the height of the titlebar */
  width: auto;
  /* Maintain aspect ratio of the logo */
}

@media screen and (max-width: 768px) {

  /* Target screens less than 768px wide (mobile) */
  .titlebar img {
    height: 15vh;
  }
}

body {
  background-image: url('assets/images/background_sprinkel.png');
  background-repeat: no-repeat;
  background-position: center center;
  /* Center the image horizontally and vertically */
  background-size: cover;
  /* Make the image cover the entire viewport */
  height: 100vh;
  /* Optional: Set body height to 100vh for better consistency */
  margin: 0;
  /* Optional: Remove body margin for better coverage */
  overflow: hidden;
  /* Disable scolling*/
}

.container {
  height: 100vh;
  /* Set container height to 100vh for responsiveness */
}

.centered-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Center the box horizontally and vertically */
  /* Optional background color */
  padding: 20px;
  /* Optional padding */
  width: 70%;
  /* Set a desired width for the box */
  max-width: 1000px;
  /* Set a maximum width for responsiveness on smaller screens */
  height: 70%;
  max-height: 1000px;
  border-radius: 5px;
  /* Optional rounded corners */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  /* Optional drop shadow */
  background-color: rgba(180, 114, 235, 0.7);
  /* Background color of the box*/
  text-align: center;
}

@media screen and (max-width: 768px) {
  .centered-box {
    width: 90%;
    height: 60%;
  }
}

.centered-box h1 {
  left: 50%;
  top: 15%;
  display: block;
  position: fixed;
  color: #ffffff;
  text-shadow: 
                -1px -1px 0 #1d1d1d7e,  
                 1px -1px 0 #1d1d1d7e,
                -1px  1px 0 #1d1d1d7e,
                 1px  1px 0 #1d1d1d7e;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  font-family: "Poetsen One", sans-serif;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  /* Target screens less than 768px wide (mobile) */
  .centered-box h1 {
    font-size: 1.3rem;
  }
}

.value_text {
  display: block;
  position: fixed;
  color: orange;
  text-shadow: 
                -1px -1px 0 #1d1d1d7e,  
                 1px -1px 0 #1d1d1d7e,
                -1px  1px 0 #1d1d1d7e,
                 1px  1px 0 #1d1d1d7e;
  font-size: 2rem;
  font-family: "Poetsen One", sans-serif;
  text-transform: uppercase;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

@media screen and (max-width: 768px) {
  /* Target screens less than 768px wide (mobile) */
  .value_text {
    font-size: 1rem;
  }
}

.social-media-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 60px;
  /* Besser am unteren Rand */
  left: 50%;
  transform: translateX(-50%);
}

.social-media-icon {
  margin: 0 20px;
  /* Add spacing between icons */
  font-size: 30px;
  color: white;
  /* Set initial white color */
}

.social-media-icon:hover {
  color: #237a76;
  /* Change color on hover (adjust as needed) */
}

.legal_container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 20px;
  /* Besser am unteren Rand */
  left: 50%;
  transform: translateX(-50%);
}

.legal-text {
  margin: 0 10px;
  /* Add spacing between icons */
  color: #000000;
  /* Color of the text */
  text-decoration: none;
  /* Remove underline */
  font-size: 0.6rem;
  /* Font size */
  font-family: Arial, sans-serif;
  /* Font family */
  font-weight: bold;
}

.legal-text:hover {
  text-decoration: none;
  /* Underline on hover */
  color: #ffffff;
  /* Change color on hover */
}

.centered-box button {
  background-color: #fb500f;
  /* Adjust background color as desired */
  color:#ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  /* Indicate clickable behavior */
  margin-top: 20px;
  /* Add some space above the button */
  display: block;
  /* Make the button occupy full width on smaller screens */
  text-align: center;
  /* Center button text */
  position: fixed;
  bottom: 60px;
  /* Besser am unteren Rand */
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  font-size: 1.5rem;
  font-family: "Poetsen One", sans-serif;
}

@media screen and (max-width: 768px) {

  /* Target screens less than 768px wide (mobile) */
  .centered-box button {
    font-size: 1rem;
    bottom: 40px;
  }
}

/* Optional styles for button hover effect */
.centered-box button:hover {
  background-color: #67a7eb;
  /* Change background color on hover */
}