
/* Background image*/

.bgimg {
  background-image: url("../images/H_Walker_JaneYork9.jpg");
  height: 100%;
  min-height: 730px;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Big name */

#big-name-container {
  margin-top: 50px;
  animation-name: fade-in;
  /*4 seconds*/
  animation-duration: 4s;
}

#big-name h1 {
  font-size: 35px;
  font-weight: 200;
}

/*Social media icons*/

#ic-round-container {
  margin-top: 50px;
  animation-name: fade-in;
  /*7 seconds*/
  animation-duration: 7s;
}

.ic-round {
  width: 37px;
  height: 37px;
  margin-bottom: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Animation for social media icons and big name */

@keyframes fade-in {
  0%   {opacity: 0;}
  30%  {opacity: 0;}
  100% {opacity: 1;}
}


/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {

  #big-name h1 {
    font-size: 55px;
  }

}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) { 

  #big-name h1 {
    font-size: 75px;
  }

  .ic-round {
    margin-left: 5px;
    margin-right: 5px;
    display: inline-block;
  }

}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) { 

  #big-name h1 {
    font-size: 103px;
  } 

  .ic-round {
    margin-left: 20px;
    margin-right: 20px;
  }

}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) { 

  #big-name h1 {
    font-size: 120px;
  } 

  .ic-round {
    margin-left: 30px;
    margin-right: 30px;
  }

}