body {
  background-color: DarkSlateBlue;
  font-family: courier;
}

.intro {
  color: lightblue;
  text-align: center;
  background-color: MediumSlateBlue;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.title {
  font-size: 40px;
  font-weight: bold;
}

.undertitle {
  font-size: 20px
}


.fishimg {
  display: block; 
  margin: auto;
  margin-bottom: 10px;
  border-radius: 10px;
  max-width: 50%
}

.main {
  color: #99c3ff;
  margin: 30px auto;
  text-align: center;
  display: flex;
  width: 70%;
  font-size: 20px;
}

.buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;  
}

.singlebutton {
  color: lightblue;
  background-color: #38346e;
  border: 2px solid lightblue;
  text-align: center;
  font-size: 20px;
  border-radius: 5px;
  width: 45%;
  font-weight: bold;
  text-decoration: none;
}

.singlebutton:hover {
  color: darkslateblue;
  background-color: lightblue;
}

h2 {
  color: darkslateblue;
}