/* General Reset */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

/* Background Style */
body {
  background: url('cajuns.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Arial', sans-serif;
  color: #ffffff;
}

/* Centered Content */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for better text visibility */
}

/* Heading Style */
h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Links Container */
.links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Button Style */
.link-button {
  display: block;
  padding: 10px 20px;
  font-size: 1rem;
  color: #ffffff;
  background-color: #ff7f50; /* Coral color for the button */
  text-decoration: none;
  border-radius: 5px;
  margin-bottom: 10px;
}

.link-button:hover {
  background-color: #ff6347; /* Slightly darker coral on hover */
}
