@import url(https://fonts.googleapis.com/css?family=VT323);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800);
body {
  background-color: #2b2b2b;
  color: #fdfdfd;
  font-family: "Open Sans";
  margin: 0;
  padding: 0;
  height: 2vh;
}

a {
  color: #d0782a;
  text-decoration: none;
  cursor: pointer;
}

p {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
}

nav ul {
  list-style: none;
  float: right;
}
nav ul li {
  display: inline-block;
  float: left;
  padding: 5px;
  text-transform: capitalize;
  font-weight: 300;
}

.navbar {
  transition: all 0.5s;
  height: 32px;
  position: absolute;
  right: 0;
  left: 0;
  max-width: 1920px;
  margin: 0 auto;
  background-color: rgba(59, 59, 59, 0);
  z-index: 100;
}
.navbar ul li {
  color: #fff;
}

.navbar ul li, .navbar-alt ul li {
  position: relative;
}

.navbtn:after {
  top: -2px;
  left: 50%;
  height: 100%;
  width: 0%;
  border-bottom: 1px solid #fff;
  content: "";
  position: absolute;
  transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 3;
}

.navbar-alt {
  transition: all 0.5s;
  height: 32px;
  position: fixed;
  right: 0;
  left: 0;
  max-width: 1920px;
  margin: 0 auto;
  background: #3b3b3b;
  z-index: 3;
}
.navbar-alt .navbtn:after {
  border-bottom: 1px solid #d0782a;
}

.navbtn:hover:after {
  left: 0;
  width: 100%;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  background-color: #3b3b3b;
  min-height: 100vh;
  padding: 0;
}

.header, .subheader {
  text-align: center;
}

.header {
  clear: both;
  height: 300px;
  padding: 50px 0;
  padding-top: calc(50px + $navbarHeight);
  background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
  background-size: 400% 400%;
  -webkit-animation: Gradient 15s ease infinite;
  -moz-animation: Gradient 15s ease infinite;
  animation: Gradient 15s ease infinite;
}

.title {
  font-size: 5em;
  padding: 0;
  margin: 0;
}

.titles {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.subheader {
  font-size: 1.2em;
  margin-bottom:20px;
}

.title, .subheader {
  font-weight: 300;
}

.sectionTitle{
  margin-bottom:3px;
  text-align: center;
}
.text{text-align:center;}
.skilltext{
  margin-bottom:10px;
}
.contacttext{
  padding-bottom:22vw;
}

.biotext {
  padding: 10px;
}

.content {
  margin: 0 15%;
  max-width:1400px;
}
.socialLinks{
  font-size:28px;
  cursor:default;
}
.gallery {
  width: 100%;
  color: #111;
  margin-top:10px;
    padding-left: 5%;
}
.gallery a, .socialLinks a{
  color:#fff;

  transition: 0.5s ease;
}
.socialLinks a:hover{
  opacity:0.8;
  cursor: pointer;
}
.gallery .card {
  height: 30%;
  width: 30%;
  display: inline-block;
  position:relative;
  box-shadow: 3px 3px 10px 1px rgba(0,0,0,0.15);
}
.gallery .card img{
  max-width:300px;
  width:100%;
}
.cardoverlay{
  opacity:0;
  position: absolute;
  background-color: rgba(208, 120, 42,0.8);
  transition: .5s ease;
  width:100%;
  height:98.3%;
  top:0;
  left:0;
  }
  .cardtext{
    top: 50%;
    left: 50%;
    width:90%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    position: absolute;
  }
.card:hover>.cardoverlay{
  opacity:1;
}
.skillLists{
  display:flex;
}
.skillcard{
  width:30%;
  background-color:#444960;
  border-radius: 10px;
  padding:10px;
  display:inline-block;
  margin: 2.5px;
  box-shadow: 3px 3px 10px 1px rgba(0,0,0,0.15);
}
.fas.skillcardicon{
  text-align: center;
  display:block;
  font-size:36px;
}
.skillcard h3{
text-align: center;
padding-bottom:5px;
margin-bottom:5px;
margin-top:5px;
border-bottom: 1px solid rgba(255,255,255,0.3);
}
.skillcard ul{
  text-align:left;
}
/* @media(min-width:461px) {
  .skillLists ul {
    column-count: 2;
  }
}
@media(min-width:716px) {
  .skillLists ul {
    column-count: 3;
  }
}*/

@media(max-width:941px){
  .gallery .card{
    width:48%;
  }
  .gallery{

    padding-left: 0;
  }
}
@media(max-width:763px){
  .skillLists{
    display:block;
  }
  .skillcard{
    width:100%
  }
  .skillLists ul {
    column-count: 3;
  }

}
@media(max-width:650px){
  .gallery .card{
    width:65.3%;
    margin-left:18.5%;
  }
}
@media(max-width:585px){
  .skillLists ul {
    column-count: 2;
  }
}
@media(max-width:458px){
  .gallery .card {
    width:93%;
    margin-left:4.5%
  }
}
@media(max-width:392px){
  .skillLists ul {
    column-count: 1;
  }
}

@-webkit-keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-moz-keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
