/* --- FONT --- */
@font-face {
  font-family: "KenyanCoffee";
  src: url("../font/KenyanCoffee.otf") format("truetype");
}

@font-face {
  font-family: "TikTok";
  src: url("../font/TikTokSans.ttf") format("truetype");
}

* {
  font-family: "TikTok", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "KenyanCoffee", Arial, sans-serif;
}

a {
  text-decoration: none;
  color: white;
}

.copyright {
  font-size: 12px;
}

.btn {
  color: #183018;
  background-color: #a8b545;
}

.btn:hover {
  color: #a8b545;
  background-color: #183018;
}
/* --- FONT --- */

/* --- COLOR --- */
.white {
  color: white;
}

.black {
  color: #183018;
}

.background-white {
  background-color: white;
}

.light-green {
  color: #a8b545;
}

.background-light-green {
  background-color: #a8b545;
}

.green {
  color: #183018;
}

.background-green {
  background-color: #183018;
}
/* --- COLOR --- */

/* --- NAV --- */
.center-1232 {
  max-width: 1232px;
  margin: 0 auto;
  width: 90%;
}

@media screen and (max-width: 575px) {
  .center-1232 {
    max-width: 1232px;
    width: 100%;
    margin: 0 auto;
  }

  .navbar-nav {
    align-items: start !important;
  }
}
/* --- NAV --- */

/* --- BACKGROUND-IMAGE --- */
#Presentation {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(/assets/background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

#Description {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(/assets/background2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}
/* --- BACKGROUND-IMAGE --- */

/* --- CARD --- */
.card {
  border: none;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(205, 205, 205, 0.409);
}

.card img {
  transition-duration: 0.3s;
  border-radius: 5px 5px 0 0;
}

.card img:hover {
  transform: translateY(-5%) scale(1.1);
}
/* --- CARD --- */

/* --- SCROLL TO TOP BUTTON --- */
#ScrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: none;
  background-color: #a8b545;
  color: #183018;
  border: none;
  border-radius: 100%;
  height: 50px;
  width: 50px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

#ScrollToTopBtn:hover {
  background-color: #183018;
  color: #a8b545;
}
/* --- SCROLL TO TOP BUTTON --- */
