/* Reset some defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-image: url(https://i.pinimg.com/1200x/c9/ec/e4/c9ece4d447d9ca26596d88605420754c.jpg);
  background-size: cover;
  background-position: center;
  color: #333;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #029eb9;
  color: white;
  padding: 0.75rem 1rem;
  box-shadow: 0px 10px 7px rgba(0, 0, 0, 0.3);
}

.navbar .titlefont {
  font-size: 2em;
  color:#ffffff;
   font-family: "Kode Mono", monospace;
  font-optical-sizing: auto;
  font-weight: bolder;
  font-style: normal;
  text-shadow: #333 1px 1px 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.nav-links a:hover {
  text-decoration: underline;
}

.about-text {
  text-align: center;
  font-size: 1.5em;
  color:#ffffff;
   font-family: "Kode Mono", monospace;
  font-optical-sizing: auto;
  font-weight: bolder;
  font-style: normal;
  text-shadow: #19595e 2px 2px 1px;
  background-color: #029eb9;
  border-radius: 10px;
}

/* Sections */
.section {
  padding: 1.5rem;
  max-width: 800px;
  margin: auto;
}

.section h2 {
  margin-bottom: 1rem;
}

/* Bulletin board */
.bulletin-board {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.titlefont {
    font-size: 2rem;
    font-family: "Limelight", sans-serif;
    font-weight: bold;
    font-style: normal;
    text-align: center;
    
}

main .titlefont {
    background-image: url(https://static.vecteezy.com/system/resources/thumbnails/035/889/727/small_2x/white-ripped-paper-png.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding: 1rem;
    background-position: center;
}

.event {
  background-image: url(https://i.pinimg.com/736x/c0/d8/e9/c0d8e9ff1502da576e24904511c08bdb.jpg);
  padding: 1rem;
  border: 1px solid #000000;
  border-radius: 10px;
  box-shadow: 0px 10px 7px rgba(0, 0, 0, 0.3);
}

.link-button {
  display: inline-block;
  padding: 0.5rem .5rem;
  background-color: #84a849;
  background-image: url(https://i.pinimg.com/736x/ed/05/25/ed0525d5f947cbbe95651b103df486d6.jpg);
  color: white;
  text-decoration: none;
  border-radius: 15px;
  font-size: .9rem;
  font-family: "Kode Mono", monospace;
}

/* Gallery */
.gallery-container {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
}
.showcase {
  display: inline-flex;
  animation: scroll-left 30s linear infinite;
  
}

.showcase img {
  object-fit: contain;
  margin-right: 10px;
  height: 200px;
  width: 300px;

  background-image: url(https://png.pngtree.com/thumb_back/fh260/background/20241016/pngtree-white-paper-texture-background-a-blank-white-crumpled-and-creased-canvas-image_16399009.jpg);
  overflow: auto; 
  border: 20px solid transparent;
  border-image: url(https://www.onlygfx.com/wp-content/uploads/2022/04/vintage-wood-frame-3.png) 10% stretch;
}

@keyframes scroll-left {
 to {
  transform: translate(calc(-50%));
 }
}

/* stop animation on hover */
.showcase:hover {
  -webkit-animation-play-state:paused;
  -moz-animation-play-state:paused;
  -o-animation-play-state:paused;
  animation-play-state:paused;
}


/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  background: #f0f0f0;
  font-size: 0.9rem;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}
