

body {
  font-family: "Poppins", sans-serif;
  background: #0e1117;
  color: #f0f0f0;
 
  height: 100vh;
  margin: 0;
  padding: 40px 20px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #64b5f6;
}

#myInput {
  width: 260px;
  padding: 10px 15px;
  border: 1px solid #444;
  border-radius: 10px;
  font-size: 1rem;
  background: #1b1f29;
  color: #fff;
  outline: none;
  transition: all 0.3s;
}

#myInput:focus {
  border-color: #64b5f6;
  box-shadow: 0 0 8px rgba(100, 181, 246, 0.5);
}

#myBtn {
  margin-left: 10px;
  padding: 10px 20px;
  background: #64b5f6;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

#myBtn:hover {
  background: #2196f3;
}

#result,
#rec {
  margin-top: 30px;
  padding: 20px;
  background: #1b1f29;
  border-radius: 16px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

#result img,
#rec img {
  max-width: 100%;
  border-radius: 10px;
  margin-top: 15px;
}

b {
  color: #90caf9;
}

#rec {
  display: flex;
  justify-content: center;
  justify-self: center;

}

img:hover {
  transform: scale(1.03);
}

#search{
    display: flex;
    justify-content: center;
}

#res{
    display: flex;
    justify-content: center;
}

#result{
    display: flex;
    justify-self: center;
    flex-direction: column;
    
    
}

#recommended{
  display: flex;
  justify-content: center;
}