/* 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: white;
  color: black;
  font-family: Verdana;
}

#container {
 background: red;
  border: none;
   margin: 30px;
}

div {
  max-width: 600px;
  background-color: #FFFCBD;
  text-align: center;
  padding: 20px;
  margin: 30px;
  
  
}

h1{
  color: green;
  text-align: center;
  background-color: #f5d7f4;
  padding: 50px;
  border: #435248;
  font-family: Georgia;
}

h2 {
  text-align: center;
}

p {
  text-align: center;
}

img {
  padding: 50px 70px;
  text-align: center;
   width: 300px;
  height: 400px;
  border-radius: 50%;
}

.green {
  color: green;
}

h3 {
  text-align: center;
  color: #FFF;
background-color: #333;
text-shadow: #FFF 0 -1px 4px, #ff0 0 -2px 10px, #ff8000 0 -10px 20px, red 0 -18px 40px;
}

.myButton {
color: rgb(255, 255, 255); font-size: 16px; line-height: 16px; padding: 6px; border-radius: 9px; font-family: Georgia, serif; font-weight: normal; text-decoration: none; font-style: normal; font-variant: normal; text-transform: none; background-image: linear-gradient(to right, rgb(28, 110, 164) 0%, rgb(35, 136, 203) 50%, rgb(20, 78, 117) 100%); box-shadow: rgba(0, 0, 0, 0.44) 5px 3px 15px 6px; border: 2px solid rgb(28, 110, 164); display: inline-block;}
.myButton:hover {
background: #1C6EA4; }
.myButton:active {
background: #144E75; }

#box {
-webkit-box-shadow: 5px 10px 15px 6px rgba(0,0,0,0.44); 
box-shadow: 5px 10px 15px 6px rgba(0,0,0,0.44);
}
#box {
 background-color: #1C6EA4;
 display: block;
 margin: 50px auto 0;
 width: 100px;
 height: 60px;
 color: #FFF;
 padding: 10px;
}