body {
  font-family: Times New Roman, Arial, sans-serif;
  margin: 10;
  padding: 10px 20px;
  background-color: #3498db;
}

.container {
  max-width: 95%;
  margin: 0 auto;
  padding: 20px;
}

header {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
}

nav {
  background: #2c3e50;
  border-radius: 10px;
}
nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}
nav ul li {
  margin: 0 15px;
}
nav ul li a {
  color: white;
  text-decoration: none;
}
nav ul li a:hover {
  text-decoration: underline;
}

.button-base, .primary-btn {
  display: inline-block;
  font-size: 16px;
  text-align: center;
}

.primary-btn {
  background-color: #549e49;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.primary-btn:hover {
  background-color: #217dbb;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.content p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
  align-items: left;
  text-align: left;
}

footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
}/*# sourceMappingURL=stylesheet.css.map */