@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

* {
    margin: 0;
    padding: 0;
}

.head {
    text-align: center;
    line-height: 2rem;
    font-family: 'Libre Franklin', sans-serif;
    background: whitesmoke;
    padding-top: 1rem;
}

.head h1 a {
    text-decoration: none;
    color: black;

}

.head h1 {
    margin-top: 1rem;
}


/* social media buttons */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.wrapper {
    display: inline-flex;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.wrapper .icon {
    margin: 0 20px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 2;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon span {
    display: block;
    height: 40px;
    width: 40px;
    background: #fff;
    border-radius: 50%;
    position: relative;

    z-index: 2;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon span i {
    line-height: 40px;
    font-size: 25px;
    color: black;
}

.wrapper .icon:hover span {
    color: #fff;
}

.wrapper .icon:hover span {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.4);
}

.wrapper .facebook:hover span {
    background: #3B5999;
}

.wrapper .twitter:hover span {
    background: #46C1F6;
}

.wrapper .instagram:hover span {
    background: #e1306c;
}

.wrapper .github:hover span {
    background: rgb(93, 52, 52);
}

.wrapper .youtube:hover span {
    background: #DE463B;
}


/* app  */


body{
  margin: 0;
  padding: 0;
  background: #34495e;
}
.box{
  position: absolute;
  top: 220px;
  right: 40px;
  padding: 5px;
  background: #f1f1f1;
}
.box a{
  width: 40px;
  height: 40px;
  float: left;
  text-indent: -9999px;
  margin: 5px;
  cursor: pointer;
}
#red{
  background: #e74c3c;
}
#blue{
  background: #3498db;
}
#green{
  background: #2ecc71;
}
#gray{
  background: #34495e;
}
#yellow{
  background: #f1c40f;
}
#orange{
  background: #e67e22;
}


/* footer  */
footer {
  position: absolute;
    top: 100%;
    width: 100%;
  background: #161616;
  text-align: center;
  padding: 3rem 0;
}

footer .f-logo {
  margin-top: 5px;
  margin-bottom: 1rem;
}

footer .footer-social a {
  margin-right: 5px;


}

footer .copy {
  color: #F2F2F2;
  margin-top: 5px;

}
.button button{
  padding: 0.8rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    outline: none;
    cursor: pointer;
    text-transform: uppercase;
    background: transparent;
    color: #3DCFD3;
    border-color: #3DCFD3;
    text-align: center;
    transition: all .3s ease;
    /* background: #161616; */
}
.button{
  position: absolute;
  top: 60%;
  right: 42%;
  text-align: center;
  padding-bottom: 1rem;
}
.button button:hover{
  background-color: #3DCFD3;
  color: white;
  border-color: #161616;
}
.z{
  padding-bottom: 3rem;
}
@media (max-width: 500px){
  .button {
    position: absolute;
    top: 70%;
    right: 32%;
  }
  .wrapper .icon {
    margin: 0 10px;
  }
  .head h5{
    font-size: 12px;
  }
  .box a {
    width: 30px;
    height: 30px;
  }
}


