/* Custom CSS for black theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  font-family: 'Montserrat', sans-serif;
}
body {
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
}

#header {
  background-color: #000;
  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;
  border-radius: 5px;
  font-size: 16px;
  width: 300px;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  background-color: #222;
  text-align: center;
  color: #fff;
  cursor:cell;
}

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 {
  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;
}


nav ul li {
  color: white;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(8px) saturate(200%) brightness(70%);
  color: #fff;
  display: flex;
  flex-direction: column; /* Display items in a column */
  height: 7vw;
  width: 100%;
  align-items: center;
  justify-content: center; /* Center the text within the navbar */
  padding: 0 1%;
  z-index: 5;
  margin: auto;
  text-align: center;
}

nav h1 {
  font-size: 3vw;
  font-weight: 800;
  margin-right: 1%;
  margin-bottom: 10px; /* Add margin to create a new line */
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center; /* Center the navbar items */
}

nav ul li {
  font-size: 1.2vw;
  margin: 0 1.5vw;
}

nav ul li a:hover {
  color: #2c7ffc;
}

nav ul li a {
  text-decoration: none;
  color: white;
}

