body::-webkit-scrollbar{
  display: none;
}

body{
  background-position: center;
  background-size:cover;
  background-image: url(src/background.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: brown;
}

img::after{
  filter: blur(1px) !important;
}

.background-image{
  position: fixed;
  z-index: -1;
  min-width: 100%;
  min-height: 100%;
  display: block;
  background-position: center;
  background-size: cover;
  background-image: url(src/background.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.container-fluid{
  background-image: url(src/content-background.jpg);
  background-size: cover;
  background-repeat: repeat-y;
}

.galery-pics{
  width: fit-content;
  height: auto;
}

.logo::before{
  position: fixed;
  z-index: 9999;
  left: 0;
  right: 0;
  width: max-content;
}

.logo-background{
  background-color: rgba(0, 0, 0, 0.5);
  margin-top: 20vmax;
  margin-bottom: 20vmax;
  width: 100%;
  display: inline-block;
  opacity: 0;
  animation: showLoadIn 2s;
  animation-delay: 0.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.logo-image{
  width: 100%;
  object-fit: cover;
  height: 15vmax;
  opacity: 0;
  transform: translateX(-100px);
  animation: showLoadIn 2s, TranslateLeftLoadIn 2s;
  animation-delay: 0.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.nav-item .nav-link{
  background-color: white;
  font-family: "Philosopher";
  font-size: larger;
  font-weight: bold;
  color: black;
}

.nav-item .nav-link.active{
  background-color: #f32727;
  font-family: "Philosopher";
  font-size: larger;
  font-weight: bold;
  color: white;
}

.scroll-info{
  font-size: xx-large;
  color: rgba(255, 255, 255, 1);
  opacity: 0;
  transform: translateY(30px);
  animation: showLoadIn 1s, TranslateUpLoadIn 1s;
  animation-delay: 0.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.staff-portrait{
  width: 100%;
}

.title{
  font-family: HIROMISAKE;
  margin-bottom: 40px;
}

.subtitle{
  font-family: Philosopher;
}

h5{
  font-family: "MADE Tommy Soft";
}

hr{
  margin-top: 50px;
  margin-bottom: 50px;
}

@keyframes showLoadIn {
  0% {
    opacity: 0;

  }
  100% {
    opacity: 1;
  }
}

@keyframes TranslateLeftLoadIn {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(0px);
  }
}

@keyframes TranslateUpLoadIn {
  0% {
    transform: translateY(30py);
  }
  100% {
    transform: translateY(0px);
  }
}

@font-face {
  font-family: "HIROMISAKE";
  src: url("./HIROMISAKE.ttf");
}

@font-face {
  font-family: "Philosopher";
  src: url("./Philosopher-Regular.ttf");
}

@font-face {
  font-family: "MADE Tommy Soft";
  src: url("./MADE\ Tommy\ Soft\ Regular.otf");
}