body{
   color: white;
  background-color: #0A2B40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height:100vh;
}
 .full-height{
     display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
} 
.search-container {
  position: relative;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-wrapper {
  position: relative;    
}
.search-icon {
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: opacity 0.3s ease;

}
.search-input-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  opacity: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: width 0.4s ease, opacity 0.3s ease;
  z-index: 1;
}
.search-input-wrapper input {
  padding: 6px 30px 6px 10px;
  font-size: 1rem;
  width: 100%;
  border-radius: 4px;
  color:#d6d6e3;
  box-sizing: border-box;
  outline: none;
}
.close-icon {
  margin-left: -25px;
  font-size: 1.2rem;
 color: #D86F32;;
  cursor: pointer;
  background-color: transparent;
  border: none;
}
.search-wrapper.active .search-icon {
  opacity: 0;
  pointer-events: none;
}
.search-wrapper.active .search-input-wrapper {
  width: 260px; /* full expanded width around icon */
  opacity: 1;
  border: 3px solid #D86F32;
  border-radius: 15px;
}
input{
    background-color: #0A2B40; ;
    outline-color: none;
    border: 2px solid  #0A2B40;
}
input{
    outline: none;
}
 .fas{
    font-size: 2.5rem;
    color: #D86F32;
    transition-delay: 0.1s;
    cursor: pointer;
}
a{
    text-decoration: none;
    
}
a:hover{
    border-left: 2px solid red;
}
ul{
    margin-right:  auto;
    margin-left: auto;
   font-size: .9rem;
    padding: 0px 10px;
    width: 80%;
   
}
 .ulfullHeight{
     height: 80vh;
 }
h2{
    margin-bottom: 10px;
   font-size: 1.2rem;     
}

.list{
    border:3px solid aliceblue;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    list-style: none;
   background-color: aliceblue;
   color: black;
    box-shadow: 5px 2px #d6d6e3;
    padding: 0px 20px;

}
.list:hover{
    border-left: 3px solid #D86F32;
}

p{
    margin-top: 0;
}

.result-content{
    margin-top: 0;
}



