/* 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: grey;
  color: black;
  font-family: Verdana;
  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;
}
h1 {
  color: Purple;
  font-family: Georgia;
  font-size: 36px;
  Font-style: normal;
}
p,ul {
  color: purple;
}
a {
  color: blue;
  background-color: pink;
}

#header { 

  width: 800px; 

  margin-top: 20px; 

  margin-right: auto; 

  margin-bottom: 20px; 

  margin-left: auto; 

  padding: 20px; 
 
  background-color: rgb(255,255,255,.8);
text-align: center;
border-radius: 4px 5px 6px 7px;
}
#header img { 

border-radius: 30px 30px 30px 30px; /* is equivalent to top-left, top-right, bottom-right, bottom-left */ 

} 
#intro {
   width: 800px; 

  margin: 30px auto 30px auto; 

   padding: 30px; 

  background-color: rgb(255,255,255,.7);
  border-radius: 4px 5px 6px 7px;
  

}
#sign-up {
  width: 800px;
  margin-top: 30px; 

  margin-right: auto; 

  margin-bottom: 30px; 

  margin-left: auto; 
 
  background-color: rgb(255,255,255,.7);
  border-radius: 4px 5px 6px 7px;
  padding: 30px; 
    }
#footer {
  width: 800px;
  margin-top: 30px; 

  margin-right: auto; 

  margin-bottom: 30px; 

  margin-left: auto; 
  font-size: 70%;
background-color: rgb(255,255,255,.7);
 padding: 30px;
 text-align: center;
 border-radius: 4px 5px 6px 7px;
}
  
.call-to-action {
display: inline-block;
padding: 10px; 
margin: 5px;
border-radius: 3px; 
text-align: center;
}

.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: #c32aa3; 
  color: #ffdc7d; 
  border-color: #4c5fd7; 
} 
.instagram:hover { 
  background-color: #7232bd; 
  border-color: #2d4576; 
} 
.instagram:active { 
  background-color: #4c5fd7; 
  border-color: #263963;
} 
.twitter {
  font-weight: bold; 
  background-color: #1da1f2; 
  color: rgb(245, 248, 250); 
  border-color: #e1e8ed; 
} 
.twitter:hover { 
  background-color: #aab8c2; 
  border-color: #e1e8ed; 
} 
.twitter:active { 
  background-color: #14171a; 
  border-color: #e1e8ed;  
}
#sign-up #email-field { 

  width: 400px; 

  padding: 12px; 

  border: solid 1px #888; 

  border-radius: 3px; 
  

} 
#sign-up #email-field:focus {
  background: pink;
}
#sign-up #submit-button { 

  display: inline; 

  padding: 11px; 

  border: solid 1px #888; 

  border-radius: 3px; 

  background-color: purple; 

  color: white; 

  cursor: pointer; /* This makes the button behave like a button should */ 
}