body {
  color: #000;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  box-sizing: border-box;
}
main {
  max-width: 1140px;
  margin: 0 auto;
}
footer {
  background-color: #000;
  padding-top: 25px;
  padding-bottom: 25px;
  max-width: 100%;
  text-align: center;
}
footer > *  {
  color: #979797!important;
  margin-bottom: 0;
}
.button {
  border: 2px solid #E44848;
  background-color: #595959;
  border-radius: 8px;
  padding: 5px 10px;
  margin: 0 10px 10px 10px;
  color: white;
}
.button:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.6);
  color: white;
  text-decoration: none;
}
.button:active {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.4);
}
/*text*/
h1 {
  font-family: 'Leckerli One', cursive;
  font-size: 2.5em;
  text-align: center;
  padding: 130px 0 30px 0;
}
h2 {
  font-size: 25px;
  color: #E44848;
}
h3 {
  font-size: 20px;
}
li {
  list-style: circle;
}
#email {
  padding-left: 15px;
  padding-right: 15px;
  color: inherit;
}
#email:hover {
  color: #E44848;
}
a:hover {
  color: #E44848;
}
a.red {
  font-weight: bold;
}
.red {
  color: #E44848;
}
.active {
  color: #E44848!important;
}
.quote {
  font-family: 'Handlee', cursive;
  font-size: 1.3rem;
  line-height: 1.25em;
}
.cursive {
  font-family: 'Handlee', cursive;
}
.cprt {
  margin-right: 10px;
}
/*Navigation*/
.navbar {
	font-family:'Open Sans', sans-serif;
  letter-spacing: 2px;
  background-color: #000;
}
.navbar-nav li {
  padding-left:30px;
  padding-right:30px;
}
.navLogo {
	height: 80px;
	width: auto;
}
.navLink {
  color:#E44848;
}
/*responsivity*/
@media only screen and (max-width: 425px) {
  .hidesm {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .hide {
    display: none;
  }
  .anchor {
    margin-left: auto;
    margin-right: auto;
  }
}
/*Images*/
.anchor {
  width: 100px;
  max-height: 178px;
  padding-bottom: 15px;
}
img.rose {
  vertical-align: top;
}
/*other CSS*/
.linkedin {
  width: 30px;
}
.center {
  text-align: center;
}
.right {
  float: right;
  margin-left: 10px;
}
.righttext {
  text-align: right;
}
.xtra-margin {
  margin-top: 20px;
  padding-bottom: 20px;
}
.less-marginbtm {
  margin-bottom: 0.2em;
}
/*Animation*/
.grow {
  animation-name: grow;
  animation-duration: 2s;
  -webkit-animation-name: grow;
  -webkit-animation-duration: 2s;
}
@keyframes grow {
  from {font-size: 0;}
  to {font-size: 2.5em;}
}
@-webkit-keyframes grow {
  from {font-size: 0;}
  to {font-size: 1em;}
}
@media only screen and (min-width: 768px) {
  @keyframes grow {
    from {font-size: 0;}
    to {font-size: 3.8em;}
  }
  @-webkit-keyframes grow {
    from {font-size: 0;}
    to {font-size: 1em;}
  }
}
.fadein {
  animation-name: fadein;
  animation-duration: 4s;
  -webkit-animation-name: fadein;
  -webkit-animation-duration: 4s;
}
@keyframes fadein {
  0% {color: black;}
  50% {color: black;}
  60% {color: gray;}
  80% {color: lightgray;}
  100% {color: white;}
}
@-webkit-keyframes fadein {
  0% {color: black;}
  50% {color: black;}
  60% {color: gray;}
  80% {color: lightgray;}
  100% {color: white;}
}
