/*
    Student Name: Katherine Butler
    File Name:styles.css
    Date: March 16, 2022
*/

/* Header*/
.welcome h1 {
    font-family: Charmonman, cursive;
    font-size: 80px;
    text-align: center;
    padding: .5em;
}

/* Navbar */
nav {
font-family: Bree Serif, serif;
}

/* body text*/
p, ul {
    font-family: Bree Serif, serif;
    font-size: 20px;
}

ul {
    margin-left: 3em;
}

/* Footer */
footer {
    color: #c4f2cb;
}

/* Social Medai buttons */
.fa {
  padding: 20px;
  font-size: 30px;
  width: 70px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
}

/* Facebook */
.fa-facebook {
  background: #3B5998;
  color: white;
}

/* Hover Buttons */
.fa:hover {
  opacity: 0.7;
}

.fa-instagram {
  background: #125688;
  color: white;
} 

.fa-youtube {
  background: #bb0000;
  color: white;
}