html{
	scroll-behavior: smooth;
	}
body{
  margin: 0%;
  font-family: 'Saira Condensed', sans-serif;
  font-family: 'Slabo 13px', serif;
  background-color: #292929;
}
h1,span{
	white-space: normal;
	word-break: break-word;
}
h2{
  text-align: center;
  font-size: 240%;
}
h3{
  text-align: center;
  font-size: 100%;
}
.sectionHeading{
  color: #ffffff;
}

.headline{
  width: 100%;
  display: inline-block;
  text-align: center;
}

footer{
	text-align: center;
	padding-bottom: 2%;
	padding-top: 2%
}

footer p{
	color: white;
	font-size: 75%;
	}
	
footer h2{
	color: white;
	font-size: 95%;
	}

footer a{
	color: white;
	}

a:focus, input:focus,textarea:focus{
	outline: 2px dashed currentColor !important;
	}



/*styling for top section*/
.introSection {
  width: 100%;
  background: url("../img/background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 95vh;
  text-align:center;
   position: relative;
   margin-bottom: 5%;
}

.portrait {
  width: 50%;
  padding-top: 30%;
}

.headingIntro{
	font-size: 75%;
	font-weight: 900;
	color: #ffffff;
	animation-delay: .6s;
	}
	
.nameHeading{
  color: #009696;
  text-align: center;
  font-size: 200%;
  padding-top: 10px;
  margin-top: 0%;
  margin-bottom:10px;
  animation-delay: .7s;

}


.headline{
  color: #ffffff;
  text-align: center;
  padding-bottom: 6px;
  margin-top: 1px;
  animation-delay: .8s;

  
  
}

.nameSection{
  width: 100%;
  margin-top: 10%;
  padding-bottom:5%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  
}
.wholeName{
	background: white;
	padding-left: 8px;
	padding-right: 8px;
	}

.socialSection{
  margin:auto;
}

.socialIcon{
  opacity: 0.5;
  width: 15%;
  padding-top: 10%;
  padding-right:1%;
  padding-left:1%;
}

.fa-chevron-down{
  color: #ffffff;
}

.arrowBottom{
 margin: auto;
  width: 50%;
    position: relative;



}
.arrowBottom a{
	text-decoration: none;
	
	}


  /*for desktop: */
@media only screen and (min-width: 768px) {
  .nameHeading{
    font-size: 300%;
  }
  .nameSection{
    margin-top: 5%;
    padding-bottom: 0%;
    position: absolute;
	top: 50%;
	transform: translateY(-50%);
  
  }
  .portrait {
    width: 18%;
    padding-top: 5%;
  }
  .introSection {
    background-size: cover;
       position: relative;
  }
  .socialIcon{
    opacity: 0.5;
    width: 5%;
    padding-top: 4%;
    padding-right:1%;
    padding-left:1%;
  }
  .arrowBottom{
   margin: auto;
  width: 50%;
  position: relative;

}


}





/*Profile section*/


.skillsBox{
  background-color: white;
  display: inline-block;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}

.educationBox{
  background-color: white;
  display: inline-block;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
.hobbyBox{
  background-color: white;
  display: inline-block;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}

  /*for mobile phones*/
[class *="Box"]{
  width: auto;
}

  /*for desktop: */
@media only screen and (min-width: 768px) {
  [class *="Box"]{
      width: 24%;}
  .groupy{
    width: auto;
    margin-left: 13%;
    }

  }

/*Contact section*/

input[type=text], select, textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

input[type=submit] {
    background-color: #009696;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

input[type=submit]:hover {
    background-color: #3183cb;
}

label{
  color: white;
}

.formContainer {
    border-radius: 5px;
    background-color: #484848;
    padding: 20px;
}

/*for desktop: */
@media only screen and (min-width: 768px) {
  .formContainer{
    margin-left: 25%;
    margin-right: 25%;
  }
}


}

/*Animations*/

@keyframes pop-in {
  0% {
    opacity: 0;
    transform: translateY(-4rem) scale(.8);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}


