h1, h2, p, li, b {
  font-family: 'Roboto', sans-serif;
}
h1, h2 {
  font-weight: bold;
}
h1 {
  -webkit-text-stroke: 1px white;
}
li a, b {
  font-size: 16px;
}
#contentbox {
  padding-top: 70px;
}
#imgfit {
  max-width: 100%;
  max-height: 100%;
}

.roundedimg {
  border-radius: 50%;
}

.story {
  height: 250px;
  border-radius: 20px 20px 20px 20px;
  -moz-border-radius: 20px 20px 20px 20px;
  -webkit-border-radius: 20px 20px 20px 20px;
  border: 1px solid #cfcfcf;
}

.description {
  height: 70px;
}

.heading {
  height: 50px;
}

.navbar-fixed-top {
    min-height: 65px;
}

.navbar-nav > li > a {
    padding-top: 0px;
    padding-bottom: 0px;
    line-height: 65px;
}

@media (max-width: 767px) {
    .navbar-nav > li > a {
    line-height: 20px;
    padding-top: 10px;
    padding-bottom: 10px;}
}
.shadow{
     box-shadow: 0 10px 30px -6px grey;
}
.footer{
  padding-top: 10px;
}
.contentbox {
  color: inherit;
  background-color: #eee;
  background-repeat: repeat;
  position: relative;
  z-index: 2;
}
.contentbox h1,
.contentbox .h1 {
  color: inherit;
}
.contentbox p {
  font-size: 21px;
  font-weight: 200;
}
.contentbox > hr {
  border-top-color: #d5d5d5;
}
.container .contentbox,
.container-fluid .contentbox {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 6px;
}
.contentbox .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .contentbox {
    padding-top: 5px;
  }
  .container .contentbox,
  .container-fluid .contentbox {
    padding-right: 60px;
    padding-left: 60px;
  }
  .contentbox h1,
  .contentbox .h1 {
    font-size: 63px;
  }
}
.fadeEffect2 {
    margin-top: 25px;
    font-size: 21px;
    -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;
}

@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; }
}
.moveup {
    position: relative;
    -webkit-animation: moving 1s;
    animation: moving 1s;
}

@-webkit-keyframes moving {
    from {top: 50px;}
    to {top: 0px;}
}

@keyframes moving {
    from {top: 50px;}
    to {top: 0px;}
}

