body {
  background-image: url("/shrines/nms/images/mainbg.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  font-family: 'Courier', sans-serif;
  max-width: 1200px;
  margin: 30px auto; 
}

.section {
  color: white;
  background-color: crimson;
  padding-left: 10px;
  border: 3px ridge darkred;
}

.container {
  background-color: white;
  padding: 10px;
  margin-top: 10px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  justify-content: center;
}

.button-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.button-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: crimson;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.button-link:hover {
    background-color: darkred;
}