

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


header {
  background-color: #9b0a0a; 
  color: #fff; 
  padding: 20px;
  text-align: center;
}


nav ul {
  list-style-type: none;
}

nav ul li {
  display: inline;
  margin-right: 20px;
}

nav ul li a {
  color: #fff; 
  text-decoration: none;
}


main {
    color: #fff;
  padding: 20px;
}


/* Style for logo replacement */
header h1 {
  font-size: 24px;
  font-weight: bold;
}

/* Background image */
body {
  background-image: url('images/background.jpg'); /* Replace 'your-background-image.jpg' with the URL or path to your background image */
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.description {
  margin-top: 5px;
  color: white; 
  font-family: Arial, sans-serif; /* Specify the desired font family */
}

/* Style for the button container */
.button-container {
  text-align: center;
  margin-top: 20px;
}

/* Style for the button */
.button {
  background-color: red;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 8px;
}

/* Style for the button description */
.button-description {
  color: white;
  margin-top: 5px;
}

