@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

nav.navbar {
  border: none !important;
}

.bg-primary {
  background-color: #c80513 !important;
}

.btn-primary {
  background-color: #f90719;
  border-color: #f90719;
}

.img-thumbnail {
  border-color: #2b2b2b;
  background-color: #2b2b2b;
}

footer {
  background: #2b2b2b;
}

.hero-image {
  /* The image used */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/background.png");
  min-height: 600px;
  height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-top: 110px;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  padding-bottom: 110px;
}

.hero-text h1,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fff;
  text-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22), 0 0 7px #ccc, 0 0 10px #ccc, 0 0 21px #ccc, 0 0 42px #f01, 0 0 82px #f01, 0 0 92px #f01, 0 0 102px #f01, 0 0 151px #f01;
}

div#image-container {
  position: relative;
  top: 25%;
}
div#image-container div {
  text-align: center;
}
div#image-container div img {
  top: 50%;
  width: 30vw;
}

.row {
  background-color: #292929;
}

.row:nth-child(odd) {
  background-color: #2b2b2b;
}

a {
  color: #f90719;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
a:hover {
  color: #fd9ca4 !important;
  cursor: pointer;
}

.btn-primary {
  color: white;
  background-color: #f90719;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-primary:hover {
  color: #202124 !important;
  background-color: #fd9ca4 !important;
  cursor: pointer;
}

.btn-primary {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.card {
  background: #2b2b2b;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.card:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

footer a {
  color: #ccc;
}

@keyframes breath {
  0% {
    background: rgba(128, 128, 128, 0.3);
  }
  60% {
    background: rgba(128, 128, 128, 0);
  }
  100% {
    background: rgba(128, 128, 128, 0.3);
  }
}
@keyframes flicker {
  100% {
    text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #f01, 0 0 82px #f01, 0 0 92px #f01, 0 0 102px #f01, 0 0 151px #f01;
  }
  0% {
    text-shadow: 0 0 2px #fff, 0 0 4px #fff, 0 0 6px #fff, 0 0 10px #f01, 0 0 45px #f01, 0 0 55px #f01, 0 0 70px #f01, 0 0 80px #f01;
  }
}/*# sourceMappingURL=site.css.map */