body {
  margin: 0;
  font-family: 'Monoton', sans-serif;
  color: #B1B1B1;
  background-color: #606060e1;
  overflow: auto;
  scroll-behavior: smooth;
}

body::-webkit-scrollbar {
  width: 0; /* Hide scrollbar for WebKit browsers (Chrome, Safari) */
}

@keyframes shadow-move {
  from {
      box-shadow: 0 0 0 rgba(6, 6, 6, 0);
  }
  to {
      box-shadow: 0 20px 50px #060606dc;
  }
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #606060;
  z-index: 1000;
  display: flex;
  justify-content: center;
  box-shadow: 0 20px 50px #0A0708;
  animation: shadow-move 2s forwards;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #058c8cfb;
  z-index: 1001;
  transition: width 0.25s;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-family: 'Monoton', sans-serif;
  margin: 0 auto;
  padding: 0px;
}

.navbar {
  display: flex;
  justify-content: center;
  padding: 10px;
  margin: 0;
  width: 100%;
}

.navbar-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-right: 20px;
}

.logo {
  width: 60px;
  height: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.button {
  font-family: 'Monoton', sans-serif;
  position: relative;
  color: #F4DF4EFF;
  background: #60606000;
  border: none;
  padding: 10px 15px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 5px;
  overflow: hidden;
  transition: color 0.3s ease-out, box-shadow 0.3s ease-out, text-shadow 0.3s ease-out;
  animation: shadow-move 2s forwards;
}

.button:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #058c8cdc;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.3s ease-out;
  z-index: -1;
}

.button:hover:before {
  transform: scaleX(1);
}

.button:hover {
  color: #0A0708;
  box-shadow: 0 0 10px #060606dc;
  text-shadow: 0 0 10px #040404dc;
}

.content-container {
  background: linear-gradient(90deg, #e0dbdd00, #60606000, #e0dbdd00);
  margin-left: auto;
  margin-right: auto;
  margin-top: 20vh;
  border-radius: 20px;
  padding: 5%;
  box-shadow: 0px 20px 100px 0px #F4DF4EFF;
  transition: box-shadow 1s ease-out;
  animation: shadow-move 2s forwards;
  width: 80%;
}


.content-container:hover {
  box-shadow: 0px 20px 100px 0px #0a0708c0;
}

h1, h3 {
  color: #F4DF4EFF;
  margin-top: 0;
  animation: settleAnimation 0.5s ease-out;
  animation-play-state: running;
}

.search-input {
  width: 40%;
  padding: 15px;
  border: none;
  border-radius: 5px;
  margin-bottom: 20px;
  background: #F4DF4EFF;
  color: #0a0708c0;
  animation: settleAnimation 0.5s ease-out;
  animation-play-state: running;
}

.content-item {
  padding: 20px;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #474747, #000000, #000000, #000000);
  color: #fff;
  border-radius: 10px;
  transition: max-height 2s ease-out, padding 2s ease-out;
  overflow: hidden;
  max-height: 60px; /* Adjust based on the height of the title */
  animation: shadow-move 2s forwards;
}

.content-item:hover {
  max-height: 500px; /* Adjust based on the height of the expanded content */
}

.content-title {
  color: #F4DF4EFF;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
  text-decoration: none;
  text-size-adjust: 12%;
}

.content-description {
  display: none;
  max-height: 200px; /* Adjust as needed */
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #606060 #F4DF4EFF;
}

.content-description::-webkit-scrollbar {
  width: 6px;
}

.content-description::-webkit-scrollbar-thumb {
  background-color: #606060;
}

.content-item:hover .content-description {
  display: block;
  transition: 1s;
}

a {
  text-decoration: none;
}

@keyframes settleAnimation {
  from {
      transform: translateY(-30px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}
