html {
	scroll-behavior: smooth;
}

h1{
  display:flex;
  color: White;
  font-family: 'Titillium Web', sans-serif;
  letter-spacing: 3px;
  justify-content: center;
  justify-content: space-around;
  padding-bottom: 20px;
  font-size: 4rem;
}

h2{
  display:flex;
  font-family: 'Titillium Web', sans-serif;
  letter-spacing: 3px;
  /*justify-content: left;*/
  justify-content: space-around;
  padding: 10px 0px 20px 0px;
}

body {
  background-color: white;
  font-family: 'Titillium Web', sans-serif;
  box-sizing: 0;
  margin: 0;
}

p{

  font-size: 1.5rem;
}

a:link {
  text-decoration: none;
  font-size: 125%;
}

a:hover {
  text-decoration: none;
  opacity: 50%;
}

a:active {
  text-decoration: none;
  opacity: 50%;
}

img{
  width: 100%;
}

#About{
  display: flex;
  flex-direction: row;
  justify-content: center;
}

/* CSS used here will be applied after bootstrap.css */

.jumbotron {
  position: relative;
  background:none;
  margin-bottom:0;
  margin-top:0;
  padding: 0;
}

#profile {
 padding-left: 10%;
 max-width: 100%;
 max-height: 100%;;
}

#bio{
  padding-left: 50px;
  margin-right: 10%;
  color:gray;
}

#icon{
  background-color: transparent;
}

#nav{
  display: flex;
  justify-content: center;
  align-items: center;
}

#navBar{
  margin:0 0 0 0;
  margin-bottom:0;
}

/* Style all font awesome icons */
.fa {
  padding: 5px;
  font-size: 40px;
  border-radius: 20%;
  text-align: center;
  text-decoration: none;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}

#Section1{
  padding: 300px 0px 300px 0px;
}
#Section2{
  padding: 50px 0px 100px 0px;
}

#Section3{
  padding: 50px 0px 100px 0px;
  color:gray;
  margin: 0 auto;
}
#Section4{
  padding: 50px 0px 100px 0px;

  color:gray;
}
#site { overflow-x: hidden; }

.fa {
  padding: 10px;
  font-size: 30px;
  width: 40px;
  text-align: center;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
  color: white;
}

/* Set a specific color for each brand */

/* Facebook */
.fa-linkedin {
  background: #2867B2;
  color: white;
}

.typewriter h1 {
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: .15em solid orange; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: .15em; /* Adjust as needed */
  animation: 
    typing 3.5s steps(40, end),
    blink-caret .75s step-end infinite;
}

/* Style the Image Used to Trigger the Modal */
#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }

  #mobileImage{
    width: 50%;
    text-align: center;
  }

  .iframeContainer{
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    width: 100%;
  }

   .iframeContainer iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   }

   .mobileFont{
    font-size: 3rem;
   }
   .headerMobileFont{
    font-size: 1.5rem;
    padding: 10px;
   }
}


