* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: Arial, sans-serif;
  background-image: url("assets/background-secco-desktop.png");
  background-size: cover;
  background-position: center;
  width: 100%;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  margin-left: 50px;
}

.logo {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.button-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.theme-button {
  width: 460px; /* Fixed width on larger screens */
  height: 90px; /* Adjust the height to fit the background image */
  font-size: 30px;
  font-family: "titillium web";
  cursor: pointer;
  border: none;
  border-radius: 5px;
  color: #0F0856;
  background-color: transparent;
  transition: background-color 0.3s ease;
  background-image: url("assets/secco_button_border.png"); /* Apply background image */
  background-size: contain; /* Ensure the image fits within the button */
  background-repeat: no-repeat; /* Prevent the image from repeating */
  background-position: center; /* Center the image */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  body {
    background-image: url("assets/background-secco.png"); /* Replace with your mobile image */
  }

  .container {
    margin-left: 20px; /* Reduce margin for smaller screens */
    align-items: center; /* Center align on mobile */
  }

  .theme-button {
    font-size: 26px; /* Slightly smaller font size */
    height: 80px; /* Adjust button height */
  }
}

@media (max-width: 480px) {
  .container {
    align-items: flex-start; /* Ensure center alignment */
    padding-bottom: 80px;
    justify-content: flex-end;
  }
  .logo {
    max-width: 50%;
    height: auto;
    margin-bottom: 50px;
  }
  .theme-button {
    width: 210px;
    min-width: unset; /* Remove min-width */
    font-size: 18px; /* Smaller font size */
    height: 70px; /* Adjust button height for small screens */
  }

  .button-container {
    gap: 10px; /* Reduce gap between buttons */
  }
}
