* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: Arial, sans-serif;
  background-image: url("assets/background-cafad-desktop.svg");
  background-size: cover;
  background-position: center;
  width: 100%;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 50px;
  padding-bottom: 70px;
}

.logo {
  max-width: 100%;
  height: auto;
  margin-bottom: 50px;
}

.button-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.theme-button {
  width: 560px; /* Fixed width on larger screens */
  height: 130px; /* Adjust the height to fit the background image */
  cursor: pointer;
  border: none;
  border-radius: 5px;
  color: white;
  background-color: transparent;
  transition: background-color 0.3s ease;
  font-size: 33px;
  font-family: "titillium web";

  /* Apply background image as border */
  background-image: url("assets/border-cafad.svg"); /* Your border image */
  background-size: 100% 100%; /* Scale image to fit the button size */
  background-repeat: no-repeat;
  background-position: center;

  /* Ensure the background image is only applied to the border */
  background-origin: border-box;
  background-clip: border-box, padding-box;
  box-sizing: border-box; /* Include padding and border in width/height */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  body,
  html {
    background-image: url("assets/background-cafad.svg"); /* Replace with your mobile image */
  }
  .logo {
    max-width: 75%;
    height: auto;
    margin-bottom: 50px;
  }

  .theme-button {
    font-size: 26px; /* Slightly smaller font size */
    height: 80px; /* Adjust button height */
  }
}

@media (max-width: 480px) {
  /* body,
  html {
    height: 100%;
  } */
  .logo {
    max-width: 55%;
    height: auto;
    margin-bottom: 50px;
  }
  .theme-button {
    width: 310px;
    min-width: unset; /* Remove min-width */
    font-size: 16px; /* Smaller font size */
    height: 70px; /* Adjust button height for small screens */
  }

  .button-container {
    gap: 25px; /* Reduce gap between buttons */
  }
}
