body {
  font-family: Poppins, sans-serif;
  margin: 0;
}

*, ::after, ::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.intro_content h1 {
  font-weight: 600;
  border-left: 5px solid #f30;
  padding-left: 15px;
  color: #fff;
  font-size: 64px;
  margin-top: -15%;
}

.intro_bg {
  background: url(../files/intro_bg.jpg) rgba(0, 0, 0, 0.7);
  background-position: center center;
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: cover;
}

.intro_content {
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 95px;
}

.contact_button a {
  display: inline-block;
  text-decoration: none;
  color: #074c8d;
  padding: 15px 25px;
  background: transparent;
  border-radius: 5px;
  font-size: 20px;
  transition: background-color 0.2s, color 0.2s;
  font-weight: 600;
  border: 2px solid #074c8d;
}

.contact_button a:hover {
  color: #fff;
  background: #074c8d;
}

.contact_button a:focus-visible {
  outline: 2px solid #074c8d;
  outline-offset: 4px;
}

.about_pic img {
  width: 80%;
}

footer .footer_content p {
  font-size: 14px;
}

.about_content p {
  color: #7a7a7a;
}

@media (max-width: 667px) {
  .intro_content h1 {
    padding-left: 10px;
    font-size: 30px;
    font-weight: 700;
    margin-top: 10%;
  }

  .intro_bg {
    background-image: url(../files/mobile_bg.jpg);
  }

  .intro_content {
    height: 85vh;
  }

  .about_section {
    padding-left: 10px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation: none !important;
    animation: none !important;
  }
}

/* animate.css (MIT) — Daniel Eden | only keyframes used by this page */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0%   { opacity: 0; -webkit-transform: translateY(-20px); transform: translateY(-20px); }
  100% { opacity: 1; -webkit-transform: translateY(0);     transform: translateY(0); }
}
@keyframes fadeInDown {
  0%   { opacity: 0; -webkit-transform: translateY(-20px); transform: translateY(-20px); }
  100% { opacity: 1; -webkit-transform: translateY(0);     transform: translateY(0); }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
  0%   { opacity: 0; -webkit-transform: translateY(20px); transform: translateY(20px); }
  100% { opacity: 1; -webkit-transform: translateY(0);    transform: translateY(0); }
}
@keyframes fadeInUp {
  0%   { opacity: 0; -webkit-transform: translateY(20px); transform: translateY(20px); }
  100% { opacity: 1; -webkit-transform: translateY(0);    transform: translateY(0); }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInLeft {
  0%   { opacity: 0; -webkit-transform: translateX(-20px); transform: translateX(-20px); }
  100% { opacity: 1; -webkit-transform: translateX(0);     transform: translateX(0); }
}
@keyframes fadeInLeft {
  0%   { opacity: 0; -webkit-transform: translateX(-20px); transform: translateX(-20px); }
  100% { opacity: 1; -webkit-transform: translateX(0);     transform: translateX(0); }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0%   { opacity: 0; -webkit-transform: translateX(20px); transform: translateX(20px); }
  100% { opacity: 1; -webkit-transform: translateX(0);    transform: translateX(0); }
}
@keyframes fadeInRight {
  0%   { opacity: 0; -webkit-transform: translateX(20px); transform: translateX(20px); }
  100% { opacity: 1; -webkit-transform: translateX(0);    transform: translateX(0); }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
