*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Open Sans";
}
main{
    height: 70vh;
}
footer {
    background: #212121;
    padding: 0px 0px;

}
footer .container{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer .ftr h3{
    font-size: 1.4em;
    margin-bottom: 1.2em;
    color: #fff;
}
footer .content{
    list-style:none;
}
footer .content a{
    text-decoration: none;
    color: #fff;
    opacity: .6;
    line-height: 30px;
    transition: .3s ease opacity;
}
footer .content a:hover{
    opacity: 1;
}
footer .ftr{
    flex-basis: 18%;
}

footer .content li{
    text-decoration: none;
    color: #fff;
    opacity: .6;
    line-height: 30px;
    transition: .3s ease opacity;
}
form{
    display: flex;
    align-items: center;
    width: 100%;
}
input{
    border: none;
    outline: none;
    padding: 10px;
    margin: 5px 0;
    background: #f5f5f5;
}
.btn input{
    background: blueviolet;
    color: #fff;
    transition: .3s ease background;
}
.btn input:hover{
    background: #000;
}
@media only screen and (max-width: 540px){
    footer .ftr{
        flex-basis: 80%;
        margin: 0 auto;
    }
    form{
        flex-direction: column;
    }
    form input{
        width: 90%;
        margin: 5px auto;
    }
} 


/***********************/
@import url("https://fonts.googleapis.com/css?family=Courgette");
body {
  padding-top: 60px;
}

body .subscribe {
  position: fixed;
  top: 10px;
  right: 10px;
  text-align: center;
  z-index: 5000;
  border-radius: 4px;
  border: 1px solid #ffffff;
}

body .subscribe a {
  display: inline-block;
  border-radius: inherit;
  padding: 10px 20px;
  background-color: #ff0000;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Courgette', cursive;
}

body .subscribe a:hover {
  background-color: #cc0000;
}

body .subscribe a span {
  margin-left: 2px;
}

/********************/
.icon {
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid #545454;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.125rem;
  color: #ffffff;
  text-decoration: none;
}

.icon:hover {
  background-color: #fff;
  text-decoration: none;
  color: #212121;
}
/*# sourceMappingURL=style.css.map */

hr { 
  display: block;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  margin-left: auto;
  margin-right: auto;
  border-style: inset;
  border-width: 1px;
} 