/* 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." */
.call-to-action {
  display: inline-block;
  padding: 10px;
  margin: 5px;
  border-radius: 3px;
  text-decoration: none; /* do more: css-tricks.com/almanac/properties/t/text-decoration */ 
  color: #333;
  background-color: #fff;
  border-bottom: solid 3px #999;
}

#sign-up #email-field {
  display: inline;
  width: 400px;
  padding: 12px;
  border: solid 1px #888;
  border-radius: 3px;
}

#sign-up #submit-button {
  display: inline;
  padding: 11px;
  border: solid 1px #888;
  border-radius: 3px;
  background-color: #75c77f;
  color: #fff;
  cursor: pointer; /* This makes the button behave like a button should */
}

.call-to-action:hover {
  background-color: #dfdfdf;
}

.call-to-action:active {
  background-color: #777;
  color: #fff;
  border-color: #555;
}

.facebook {
  font-weight: bold;
  background-color: #3B5998;
  color: #fff;
  border-color: #2d4576;
}

.facebook:hover {
  background-color: #425f9a;
  border-color: #2d4576;
}

.facebook:active {
  background-color: #324c83;
  border-color: #263963;
}

.twitter {
  font-weight: bold;
  background-color: #38A1F3;
  color: #fff;
  border-color: #2d4576;
}

.twitter:hover {
  background-color: #3ea5f4;
  border-color: #2d4576;
}

.twitter:active {
  background-color: #38A1F3;
  border-color: #263963;
}

.blog {
  font-weight: bold;
  background-color: #00749c;
  color: #fff;
  border-color: #2d4576;
}

.blog:hover {
  background-color: #0086b3;
  border-color: #2d4576;
}

.blog:active {
  background-color: #00749c;
  border-color: #263963;
}


body {
  text-align: center;
  background-color: white;
  color: black;
  font-family: Verdana;
  background-image: url("Background5.jpg");
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  display: block;
  background-size: contain;
}

h1 {
  color:black;
  font-size: 50px;
}

h2 {
  color: black;
  font-size: 25px;
}

p {
  color:black;
}


#header img {
  border-radius: 50px 50px 50px 50px; /* is equivalent to top-left, top-right, bottom-right, bottom-left */

}

#header {
  width: 800px;
  margin-top: 30px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
  padding: 30px;
  border: 3px white solid;
}

#intro {
  width: 800px;
  margin-top: 30px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
  padding: 30px;
  border: 3px white solid;
}

#sign-up {
  width: 800px;
  margin-top: 30px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
  padding: 30px;
  border: 3px white solid;
}

#footer{
  width: 800px;
  margin-top: 30px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
  padding: 30px;
  border: 3px white solid;
}