body { 
  //  background: url(../img/cover.jpg) no-repeat center center fixed; 
  //  -webkit-background-size: cover;
  //  -moz-background-size: cover;
  //  -o-background-size: cover;
  //  background-size: cover;
  background-color:#3c3c3c;
  }

  p, h1, h3{
    font-family: 'Montserrat', sans-serif; 
    color: #000;
    margin-bottom:0;
  }

  h1{
    font-weight:700;
    font-size:1.5rem;
    padding-bottom:25px;
    margin-bottom:30px;
    color:#008528;
    border-bottom:1px solid #767676;
  }

	#content {
 background-color: white;
padding: 30px 0;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);     
}

  h3{
      font-weight:500;
    Display: inline-block;
    margin-left:15px;
    color:#000;
    }

a{
	color:#000;
  text-decoration: underline;
}

  #head-wrapper{
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background-color: #ccc;
    border-radius: 3px;
  }


  #header-inner{
    margin-top:10%;
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;
}

  /* #region header-inner animations*/
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* #endregion */

  .profile-picture{
    margin-bottom: 1rem;
    border: 3px solid white;
    display: inline-block;
    max-width:200px;
  }

  .text-underline{
    text-decoration: underline;
  }

  /* Responsive, not mobile */
@media screen and (min-width: 576px) {
        h1{
            font-size:2.5 rem;
        }

        #header-inner{
            margin-top:20%;
        }
    }


.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #000;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}


