/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f5f5f5;
  color: #222222;
}


nav {
  background-color: white;
  padding: 20px;
  text-align: center;
}

nav a {
  color: #222222;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

main {
  text-align: center;
  padding: 100px 20px;
}

main h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

main p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.button {
  display: inline-block;
  background-color: #222222;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
}

.button:hover {
  background-color: #555555;
}

#messageButton {
  background-color: white;
  color: #222222;
  border: 2px solid #222222;
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
}

#messageButton:hover {
  background-color: #222222;
  color: white;
}



