@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700');

html,body{
  background-color: silver;
  height:100%;
  width:100%;
  font-family: 'ariel';
  color: black;
}

.navbar {
  padding: 0px;

}
.navbar-nav li{
  padding-right: 30px;
  font-size: 30px;

}
.nav-link{
  font-size: 30px !important;

}
.carousel-inner img{
  width:100%;
  height: 90%;
}
.carousel-caption{
position:absolute;
top:50%;
transform: translateY(-50%);

}
.carousel-caption h1{
  font-size: 100px;
  text-transform: uppercase;
  text-shadow: 1px 1px 15px black;
}
h3{
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  text-shadow: 1px 1px 15px black;

}
h2{
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  text-shadow: 1px 1px 15px black;
   margin-left: 200px;

}
button{
  background-color:silver;
  font-size: 30px;
  color: black;
  border-radius: 15px;
  border:1px solid black;
  text-shadow: 1px 1px 15px black;



}
button:hover{
  background-color: pink;

}

.welcome{
  width: 75%;
  margin: 0 auto;
}
.welcome h1{
  font-size: 40px;
}
.social a{
 font-size: 100px;
 padding: 20px;

}
.card img{
width: 100%;

}
.fa-facebook{
  color: #3b5998;
}
.fa-facebook:hover{
  color:orange;
}
.fa-twitter{
  color:#00aced;
}
.fa-twitter:hover{
  color:orange;
}
.fa-google-plus-g{
  color:red;
}
.fa-google-plus-g:hover{
  color:orange;
}
.fa-instagram{
  color:purple;
}
.fa-instagram:hover{
  color:orange;
}
.lead{
  text-align: center;
  font-size: 20px;
}
footer{
  background-color: #ff99ff;

}
hr{
  border-top: 2px solid gold;
}


.welcome h5{
  font-size: 30px;
}
.welcome p{
  font-size: 20px;
}




/*---Media Queries --*/
@media (max-width: 992px) {
  .carousel-inner img{

      height: 80%;
    }
  .carousel-caption h1{
    font-size: 55px;
  }
  h3{
    font-size: 30px;
  }
  h2{
    font-size: 30px;
    margin-left: 150px;
  }

  button{
    font-size: 30px;
  }
  .welcome h1{
    font-size: 35px;
  }
.welcome .lead{

    font-size: 25px;
  }

  .social a{
   font-size: 80px;
   padding: 10px;

  }
  .welcome h5{
    font-size: 25px;
  }
  .welcome p{
    font-size: 16px;
  }

  }
@media (max-width: 768px) {
  .carousel-inner img{

      height: 70%;
    }
  .carousel-caption h1{
    font-size: 50px;
  }
  h3{
    font-size: 30px;
  }
  h2{
    font-size: 30px;
    margin-left: 80px;
  }

  button{
    font-size: 25px;
  }
  .welcome h1{
    font-size: 30px;
  }
.welcome .lead{

    font-size: 20px;
  }

  .social a{
   font-size: 45px;
   padding: 10px;

  }
  .welcome h5{
    font-size: 20px;
  }
  .welcome p{
    font-size: 16px;
  }
}
@media (max-width: 576px) {
.carousel-inner img{

    height: 65%;
  }
.carousel-caption h1{
  font-size: 30px;
}
h3{
  font-size: 14px;
}
h2{
  font-size: 14px;
  margin-left: 10px;
}
h1{
text-align: center;
font-size: 40px;

}
button{
  font-size: 16px;
}
.welcome h1{
  font-size: 20px;
}
.lead{

  font-size: 12px;
}

.social a{
 font-size: 30px;
 padding: 5px;

}
.welcome h5{
  font-size: 16px;
}
.welcome p{
  font-size: 12px;
}
}


/*---Firefox Bug Fix --*/
.carousel-item {
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
/*--- Fixed Background Image --*/
figure {
  position: relative;
  width: 100%;
  height: 60%;
  margin: 0!important;
}
.fixed-wrap {
  clip: rect(0, auto, auto, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#fixed {
  background-image: url('img/mac.png');
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}
/*--- Bootstrap Padding Fix --*/
[class*="col-"] {
    padding: 1rem;
}





/*
Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
*/
