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

* {
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0 0 40px;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

#header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; 
  text-align: center; 
}

#header h1 {
  margin: 0;
  font-size: 24px;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header img {
  width: 15%; 
  min-width: 80px;
  max-width: 200px;
  height: auto;
  margin-top: 20px; 
}

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

#content h1 {
  font-size: 24px;
  cursor: pointer;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

#content h1:hover {
  color: #aaa;
}

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

.form__input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  width: 300px;
  max-width: 90%;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  background-color: #222;
  text-align: center;
  color: #fff;
  cursor: text;
  transition: box-shadow 0.3s ease;
}

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

.form__input:hover {
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.form__input:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

a {
  text-decoration: none;
  color: white;
  padding: 0 1px;
  text-align: center;
  transition: color 0.3s ease;
}

a:hover {
  color: #aaa;
}

#footer {
  position: fixed;
  left: 0;
  bottom: 0;
  border-top: 1px solid #99ccff;
  width: 100%;
  min-height: 30px;
  background-color: #000;
  padding: 10px;
  text-align: center;
  color: #fff;
  font-size: 14px;
}

#footer p {
  margin: 0;
}

.fa {
  font-size: 24px;
  margin: 0 10px;
  color: #fff;
  transition: color 0.3s ease;
}

.fa:hover {
  color: #aaa;
}

#canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
