/* Custom CSS for black theme */
body {
  background-image: url('/bg.jpg');
  background-size: 100%;
  color: #fff;
  margin: 0;
  padding: 0;
}

#header {
  padding: 20px;
  text-align: center;
}

#header h1 {
  margin: 0;
  font-size: 24px;
  font-family: 'Arial', sans-serif;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header img {
  width: 20%;
  height: auto;
}

#content {
  text-align: center;
  padding: 20px;
  margin-top: -4%;
}

#content h1 {
  font-size: 24px;
  cursor:pointer;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5;
  margin-bottom: 20px;
}

#searchbar {
  text-align: center;
  margin: 20px auto;
}

.form__input {
  padding: 10px;
  border: none;
  font-size: 16px;
  width: 300px;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  background-color: #000;
  text-align: center;
  color: purple;
  border-radius: 5px;
  transition: 0.4s;
}

a{
  text-decoration: none;
  color:white;
  width:50px;
  height:50px;
  padding-right: 1px;
  padding-left: 1px;
  text-align: center;
  align-self: center;
}

.form__input::placeholder {
  color: #aaa;
  text-align: center;
}

.form_input:hover{
  cursor:cell;
}

.form__input:focus {
  transition: 0.4s;
  width: 350px;
  outline: none;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
#footer {
  position: fixed;
  left: 0;
  bottom: 0;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #99ccff;
  font-family: 'Open Sans', sans-serif;
  width: 100%;
  height:15px;
  background-color: #000;
  padding-top: 7.5px;
  padding-bottom: 10px;
  text-align: center;
  color: #fff;
  font-size: 14px;
}

#footer p {
  margin: 0;
}

.fa {
  font-size: 24px;
  margin-right: 10px;
  color: #fff;
}

.fa:hover {
  color: #aaa;
}
.bottombar {
                margin: 0;
                padding: 10px 0;
                background: rgba(50, 50, 50, 0.9);
                color: white;
                text-align: center;
                font-size: 14px;
                position: absolute;
                bottom: 0;
                width: 100%;
                border-radius: 4vh 4vh 0 0;
                box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.5);
            }
            .page-content {
                flex: 1; /* Fills the remaining space to push the footer down */
            }
            .navbar {
                background-color: rgba(50, 50, 50, 0.8);
                padding: 10px 0;
                border-bottom: 2px solid black;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
                position: sticky;
                top: 0;
                z-index: 1000;
            }

            .nav-links {
                list-style: none;
                display: flex;
                justify-content: center;
                gap: 20px;
                margin: 0;
                padding: 0;
            }

            .nav-links li {
                display: inline;
            }

            .nav-links li a {
                text-decoration: none;
                font-family: "Courier New", Courier, monospace;
                font-size: 20px;
                color: white;
                padding: 5px 10px;
                transition: all 0.3s ease;
            }

            .nav-links li a:hover {
                font-size: 24px;
                color: #ff6384;
                transform: scale(1.2);
                text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.8);
            }
