#myFooter {
  background-color: rgb(30,30,30);
  color: white;
  font-size: 16px;
  font-family: 'Roboto Condensed';
  text-shadow: 1px 1px 2px #000;
}

#myFooter ul {
  list-style-type: none;
  padding-left: 0;
}

#myFooter li {
  line-height: 1.3;
  margin-bottom: 10px;
}

#myFooter h2 {
  font-size: 28px;
}

#myFooter h3 {
  font-size: 20px;
  font-weight: bold;
}

#myFooter a {
  color: #c3c3c3;
  text-decoration: none;
  transition: all .3s;
}

#myFooter a:hover, #myFooter a:focus {
  text-decoration: none;
  color: #c894c5;
  transition: all .3s;
}

/* Button Styling */

#myFooter .contact-button {
  font-size: 18px !important;
  margin: 0 auto;
  max-width: 200px;
  padding: 10px 15px;
  box-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

#myFooter .contact-button:hover {
  color: #fff;
  font-size: 18px !important;
}

#myFooter .btn:not(:disabled):not(.disabled) {
  background-color: #6f006f;
  color: white;
  transition: all .3s;
  border-width: 0px;
  border-radius: 4px;
  font-weight: 700;
}

#myFooter .btn:not(:disabled):not(.disabled):hover {
  background-color: #91298c;
  color: white;
  transition: all .3s;
}

/* Social Icons */

#myFooter .social-networks a {
  font-size: 32px;
  color: #f9f9f9;
  padding: 10px;
  transition: 0.2s;
}

#myFooter .social-networks a:hover {
  text-decoration: none;
}

#myFooter .facebook:hover {
  color: #0077e2;
}

#myFooter .youtube:hover {
  color: #ff0000;
}

#myFooter .instagram:hover {
  color: #ff00e6;
}

/* Copyright */

#myFooter .footer-copyright {
  background-color: rgb(20,20,20);
  text-align: center;
}

#myFooter .footer-copyright p {
  margin: 3px 10px;
  color: #939393;
  font-size: 15px;
}

