* {
  margin: 0;
  padding: 0;
  text-align: center;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.display-div {
  width: 90%;
  margin: auto;
  margin-top: 40px;
}

li {
  list-style-type: none;
  width: 100%;
}

ul {
  display: flex;
  justify-content: space-evenly;
  background: rgb(26, 40, 112);
  background: linear-gradient(237deg, rgba(26, 40, 112, 0.6543518253630656) 0%, rgba(185, 105, 243, 0.65) 100%);
  padding: 5px;
  
}

ul:nth-child(odd) {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

ul:nth-child(odd) li {
  font-weight: 900;
}

ul:nth-child(even) {
  margin-bottom: 10px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.form-btn {
  display: flex;
  justify-content: space-evenly;


}

h1 {
  color: #29315b;
  margin: 10px;
}

h2 {
  color: #4b59a7;
  margin: 10px;

}

h3 {
  color: #1a2870;
  margin: 10px;

}

span {
  color: #7c46a3;
  font-size: 30px;
}

img {
  width: 50px;

}

input {
  border-radius: 20px;
  padding: 5px;
  margin: 10px;
  border: none;
  background-color: #F0EEED;

}

button:not(#searchBtn) {
  background: rgb(109, 128, 240);
  background: linear-gradient(237deg, rgba(109, 128, 240, 1) 0%, rgba(185, 105, 243, 1) 100%);
  border: none;
  width: 80px;
  height: 30px;
  border-radius: 20px;
  margin: 10px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
 
}
button:not(#searchBtn):hover {
  /* background: rgb(109, 128, 240); */
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
/* button:not(#searchBtn):active {
  background-color: #0F6292;
} */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance:none;
}

#searchBtn {
  position: relative;
  top: 0px;
  right: 40px;
  border: none;
  background-color: #F0EEED;
  cursor: pointer;

}

i {
  color: #323e79;
  font-weight: bold;
  font-size: larger;
}

@media screen and (max-width: 600px) {

  .form-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  * {
    font-size: 10px;
  }

  .display-div {
    width: 100%;
    margin-top: 10px;
  }
}
/* loader...... */

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #080808;
  margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
