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

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

.infotextimg {
  display:flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.text {
  color: #99c3ff;
  font-size: 20px;
}

.row {
  display:flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  padding: 20px;
}

.row img {
  width: 40%;
  height: auto;
  border-radius: 5px;
}
.flipped {
  flex-direction: row-reverse;
}

h2 {
  color: darkslateblue;
}