/* General body styling */
body {
  background-color: #4f9400;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
}

/* Header and footer */
header, footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px 0;
}

/* Links */
a {
  color: #000;
  font-weight: bold;
  text-decoration: underline;
}

/* Images */
img {
  margin-top: 100px;
  margin-right: 20px;
  height: 90px;
  float: right;
  position: absolute;
}

.edge-img {
  position: absolute;
  top: 20px;
  right: 0;
  height: 300px;
  width: 300px;
}
/* Button-style link */
.button-link {
  display: inline-block;
  background-color: #6ba520;
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 6px;
  margin-top: 20px;
}

.button-link:hover {
  background-color: #568815;
}