body { 
  margin: 0;
  padding: 20px;
  font-size: 10.5pt;
  background-color: rgba(15, 15, 15);
  font-family: Gloria Hallelujah, serif;
  overflow: hidden; /* Prevents scrollbar */
}

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

.title {
  display: block;
  font-size: 1.2rem;
  margin: 1rem 8rem;
}

.title a {
  color: gold;}

.carousel {
  display: flex;
  white-space: nowrap;
  margin-bottom: 20px;
}

.carousel img {
  height: 220px;
  margin: 0 10px;
  border-radius: 12px;
  object-fit: cover;
}

@keyframes scroll-left {
  0% {
      transform: translateX(100%);
     }
  100% {
      transform: translateX(-100%);
       } 
 }

@keyframes scroll-right {
   0% {
      transform: translateX(-100%);
      }
   100% {
      transform: translateX(100%);
      }
}

.scroll-left {
  animation: scroll-left 60s linear infinite reverse;
}

.scroll-right {
  animation: scroll-right 60s linear infinite reverse;
}

footer {
    position: fixed;
    z-index: 999;
    bottom: 0;
    right: 0;
    left: 0;
    font-size: 1rem;
    background-color: lightskyblue;
    color: white;
    text-align: center;
    line-height: 1.3;
    width: 100%;
}

.footer span {
    display: block;
    margin: 0 0 -7px 0;
}

.footer a {
    color: darkslateblue;
    text-decoration: underline;
}

        .moon-button {
	    float: right;
	    padding: 10px;
            margin: 10px;
            font-size: 16px;
            cursor: pointer;
            background-color: transparent;
            border: none;
            outline: none;
            transition: transform 0.3s ease;
        }
        .moon-button svg {
            width: 20px;
            height: 20px;
            fill: #d6ecf0;
            transition: fill 0.3s ease;
        }
        .options {
	    float: right;
	    width: 5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
            background-color: #d6ecf0;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin: 10px 0;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        .options.show {
            max-height: 200px; /* Adjust based on content size */
        }
        .options ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .options li {
            padding: 10px;
            border-bottom: 1px solid #ddd;
        }
        .options li:last-child {
            border-bottom: none;
        }

@media screen and (max-width: 1089px) {
  body {
  	margin: auto;
	font-size: 1rem;
}
  .title {
	margin: 1rem 0 3rem 2rem;
	font-size: 1rem;
	}
  .carousel img {
  	height: 10rem;
}
}
