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

.title {
  font-size: 40px;
  font-weight: bold;
  color: lightblue;
  text-align: center;
  background-color: MediumSlateBlue;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.main {
  color: #99c3ff;
  font-size: 20px;
  text-align: left;
  max-width: 45%;
  margin-right: 3%
}

.main ul{
  display:flex;
  flex-direction: column;
  gap:12px;
}

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

.info{
  display: flex;
  gap: 10px;
  margin: auto;
  max-width: 100%;
  align-items: center;
  margin-bottom: 10px;
}


.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;
}