html,
body {
  height: 100%;
  margin: 0;
  font-family: serif;
  color: #ffffff; /* all text in body white */
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-image: url("ImageMainpage.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: rgba(148, 43, 43, 0.5);
}

header h1 {
  margin: 0;
  font-size: 28px;
}

nav a {
  color: #c5c7d0;
  text-decoration: none;
  margin-left: 20px;
}
nav a:hover {
  color: rgb(245, 140, 48);
}

.content-wrapper {
  flex: 1; /* fills space between header and footer */
  display: flex;
  justify-content: flex-start; /* align text vertically centered but start horizontally */
  align-items: center; /* vertical center */
  padding-left: 50px; /* some spacing from left edge */
}

.content {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* left-align text */
}

h1 {
  font-size: 50px;
  margin: 10px 0;
}

h2 {
  font-size: 28px;
  margin: 10px 0 30px;
}

button {
  width: 200px;
  height: 50px;
  font-size: 20px;
  background-color: rgba(11, 146, 101, 0.9);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
button:hover {
  background-color: rgb(245, 140, 48);
}

footer {
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 10px 0;
}

footer a {
  color: #c5c7d0;
  text-decoration: none;
  margin: 0 15px;
}
footer a:hover {
  color: rgb(245, 140, 48);
}
