body {
  font-family: "Jost", Arial, Helvetica, sans-serif;
  font-size: 14px;
}

body {
  margin: 0;
}

header {
  padding: 1.5rem 0;
}

main {
  margin: 1rem;
}

h1 {
  font-size: 2rem;
  color: rgb(23, 114, 87);
  margin: 0.75rem 1rem;
}

h2 {
  font-size: 1.6rem;

  margin: 0.5rem 1rem;
}

h3 {
  font-size: 1.4rem;
}

h5 {
  color: rgb(42, 163, 103);
}

p {
  font-size: 1rem;
  padding: 0.25rem 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: rgb(42, 163, 103);
  text-decoration: none;
}

a:hover {
  color: rgb(42, 163, 103);
  text-decoration: none;
  border-bottom: 2px solid rgb(42, 163, 103);
}

/*
  Classes
*/

.navbar {
  background: rgb(23, 114, 87);
  color: #fff;

  /* Example here: https://www.w3schools.com/cssref/css3_pr_box-shadow.asp */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);

  font-size: 1.2rem;

  padding: 1rem;
}

.navbar ul {
  margin: 0;
  padding: 0;
}

.navbar ul li {
  list-style: none;
  display: inline;
  padding-right: 0.5rem;
}

.navbar a {
  color: #fff;
}

.whitelink {
  color: white;
}

.navbar a:hover {
  border: 0;
  color: rgb(42, 163, 103);
}

.navbar .active a {
  border-bottom: 2px solid rgb(42, 163, 103);
  width: fit-content;
}

.footer {
  background: rgb(42, 163, 103);
  color: #fff;
  font-size: 1.2rem;

  padding: 1rem;
}

.footer a {
  color: #fff;
  border-bottom: 2px solid #fff;
}

.footer a:hover {
  border-color: rgb(23, 114, 87);
}

.color-secondary {
  color: rgb(42, 163, 103);
}

.project {
  width: 100%;
}

.project-wrapper {
  padding: 1rem;
}

/*
  Bootstrap Overriding
*/
.btn-primary {
  background-color: rgb(42, 163, 103);
  border-color: rgb(42, 163, 103);
}

.btn-fb {
  background-color: #3b5998;
  border-color: #3b5998;
  color: white;
  margin-left: 15px;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled):active {
  background-color: rgb(23, 114, 87);
  border: 1px solid rgb(42, 163, 103);
}

.icon-bar {
  width: 33px;
  height: 4px;
  display: block;
  background: white;
  border-radius: 3px;
  margin-bottom: 5px;
}

/* Facebook */

.like-content {
  display: inline-block;
  width: 100%;
  margin: 40px 0 0;
  padding: 40px 0 0;
  font-size: 18px;
  border-top: 10px dashed #eee;
  text-align: center;
}
.like-content span {
  color: #9d9da4;
  font-family: monospace;
}
.like-content .btn-secondary {
  display: block;
  margin: 40px auto 0px;
  text-align: center;
  background: #ed2553;
  border-radius: 3px;
  box-shadow: 0 10px 20px -8px rgb(240, 75, 113);
  padding: 10px 17px;
  font-size: 18px;
  cursor: pointer;
  border: none;
  outline: none;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.like-content .btn-secondary:hover {
  transform: translateY(-3px);
}
.like-content .btn-secondary .fa {
  margin-right: 5px;
}
.animate-like {
  animation-name: likeAnimation;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-duration: 0.65s;
}
@keyframes likeAnimation {
  0% {
    transform: scale(30);
  }
  100% {
    transform: scale(1);
  }
}

/* Like button */

.like-content {
  /*display: inline-block;*/
  width: 100%;
  margin: 2px 0 0;
  padding: 2px 0 0;
  font-size: 18px;
  /*border-top: 10px dashed #eee;*/
  text-align: center;
}
.like-content span {
  color: #9d9da4;
  font-family: monospace;
}
.like-content .btn-secondary {
  display: block;
  margin: 40px auto 0px;
  text-align: center;
  background: #ed2553;
  border-radius: 3px;
  box-shadow: 0 10px 20px -8px rgb(240, 75, 113);
  padding: 10px 17px;
  font-size: 18px;
  cursor: pointer;
  border: none;
  outline: none;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.like-content .btn-secondary:hover {
  transform: translateY(-3px);
}
.like-content .btn-secondary .fa {
  margin-right: 5px;
}
.animate-like {
  animation-name: likeAnimation;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-duration: 0.65s;
}
@keyframes likeAnimation {
  0% {
    transform: scale(30);
  }
  100% {
    transform: scale(1);
  }
}

.buttonlike {
  background-color: #ed2553;
  border-radius: 6px;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  padding: 16px 24px;
  text-align: center;
  text-transform: uppercase;
  width: auto;
}
.buttonlike:hover {
  background-color: #b91e43;
  color: #fff;
}

/* 
  Desktop Media Queries
*/
@media only screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}
