body {
    background: linear-gradient(to right, #1f1f1f, #333333);
    color: white;
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background: #1f1f1f;
    border-bottom: 1px solid #333333;
    padding: 5px;
    text-align: center;
}

main {
    flex: 1;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h2 {
    margin-top: 0;
    text-align: center;
}

.project-link {
    text-decoration: none;
    color: white;
}

.project {
    text-align: center;
    margin: 20px 0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project img {
    border-radius: 45px;
    transition: transform 0.3s;
}

.project:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.project img:hover {
    transform: scale(1.1);
}

footer {
    padding: 20px;
    background: #292929;
    text-align: center;
}

h3, h4 {
    margin: 10px 0;
}

.donate-button {
    background-color: #4a73b5;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.donate-button:hover {
    background-color: #3a5b8b;
    transform: scale(1.05);
}
.quickbar {
    position:sticky;
    top: 0;
    width: 100%;
    background: #292929;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    padding-right: 40px;
    box-sizing: border-box; 
    margin-right: 20px;
}

.quickbar a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
    font-size: 14px;
    transition: color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.quickbar a:hover {
    color: #4a73b5;
    transform: translateY(-5px);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.quickbar-icon {
    height: 40px;
    width: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.quickbar-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.project-overview {
    text-align: center;
    margin: 20px 0;
}

.project-image {
    border-radius: 45px;
    transition: transform 0.3s;
}

.project-image:hover {
    transform: scale(1.1);
}

.description, .credits {
    background: #545454;
    border-radius: 45px;
    padding: 10px; /* Reduced padding */
    text-align: center;
    margin: 20px 0;
    max-width: 600px;
}

.description h5, .credits h5 {
    margin-top: 0;
}

.announcement {
    text-align: center;
    margin: 20px 0;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #130f0f;
    border-radius: 10%;
    flex-direction: column;
    padding: 1%;
}
.announcement:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.announcement p {
    font-size: 15px;
    color: #ffffff;
    margin: 0;
    padding: 10px;
    text-align: left;
}
* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}