* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;   
  align-items: center;       
  background-color: #f5f5f5;
}

.container {
  width: 100%;
  max-width: 800px;  
  padding: 20px;
  background: white;
  border-radius: 10px;
}

.title-bar {
  font-family: Georgia, 'Times New Roman', Times, serif;
  width: 100%;
  background: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
}

#searchForm{
  padding-top: 20px ;
}

input {
  padding: 10px;
  width: 70%;
  border-radius: 25px;
}

button {
  padding: 10px;
  cursor: pointer;
  border-radius: 30px;
  border-color: greenyellow;
  box-shadow: 10px 0 15px rgba(0,0,0,0.2);
}

#result {
  margin-top: 20px;
  text-align: left;
}

#error {
  color: red;
  margin-top: 10px;
}

.hidden {
  display: none;
}

.dark {
  background: #222;
  color: #fff;
}

#result {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 2s ease, transform 2s ease;
}

#result.show {
  opacity: 1;
  transform: translateY(0);
}