/* style.css – LLA v3.0 Island Theme */

body {
  font-family: 'Segoe UI', sans-serif;
  background: url('https://cdn-images.imagevenue.com/8b/7f/32/ME1AW7XD_o.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Link styles */
a, a:visited {
  color: #0077cc;
  text-decoration: underline;
}

a:hover, a:focus {
  color: #005999;
  outline: none; /* Add if you want to handle focus differently */
  text-decoration: none;
}

/* Container for page content */
.container {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  max-width: 1000px;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/* Button styles */
.button {
  background-color: transparent;
  color: #0077cc;
  border: 2px solid #0077cc;
  border-radius: 8px;
  padding: 10px 20px;
  text-decoration: underline;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.button:hover,
.button:focus {
  background-color: #0077cc;
  color: white;
  text-decoration: none;
  outline: none; /* For accessibility, consider adding a visible focus style */
}
