/* 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 {
  background-color:#B657A2;
  color: black;
  font-family: Helvetica;
  background-image: url("background.jpg");
  background-size: 100% auto; /* is equivalent to width then height */
  background-position: center; /* value can also be right, left, top or bottom  */
  background-attachment: fixed; /* value can also be scroll, local, initial and inherit */
}
h1 , h2 {
  color: #FDCB01;
}
h1 {
  font-size: 100px;
  text-align: center;
   text-shadow: 2px 2px 4px #000000;
}
h2 {
  font-size: 30px;
  text-align: center;
  text-shadow: 2px 2px 4px #000000;
  padding: 40px;
}
p, ul {
  color: #FDCB01;
}
a {
  color: #FDCB01;
  background-color: white;
}
#header img {
  border-radius: 50px 50px 50px 50px; /* is equivalent to top-left, top-right, bottom-right, bottom-left */
  margin: 10px;
}
#header {
   width: 800px;
  margin-top: 50px;
  margin-right: auto;
  margin-bottom: 35px;
  margin-left: auto;
  text-align: center;
}
#intro {
  width: 800px;
  text-align: center;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
  line-height: 22px;
  font-size: 25px;
  text-shadow: 2px 2px 4px #000000;
}
#sign-up {
  width: 800px;
  margin-top: 50px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
  padding: 10px;
  border: 3px white solid;
  background-color: rgb(255, 255, 255, 0.4); 
  text-shadow: 1px 1px 2px #000000;
}
#footer {
  width: 800px;
  margin-top: 40px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
  padding: 30px;
  text-align: center; 
}
.call-to-action {
  display: inline-block;
  padding: 7px;
  margin: 10px;
  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;
  text-shadow: none;
}
.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;
}
.instagram {
  font-weight: bold;
  background-color: #7232bd;
  color: #fff;
  border-color: #2d4576;
}

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

.instagram:active {
  background-color: #324c83;
  border-color: #263963;
}
.youtube {
  font-weight: bold;
  background-color: #ff0000;
  color: #fff;
  border-color: #2d4576;
}

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

.youtube:active {
  background-color: #324c83;
  border-color: #263963;
}
#sign-up p {
  color: #FDCB01;
  font-size: 20px;
  margin-bottom: 10px;
} 
#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 */
}