@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@200;300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;500&display=swap');

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

body {
  font-family: 'Lexend Deca', sans-serif;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  background:#574AE8;
  background: linear-gradient(to right, #574AE8, #3EA1DB);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 220px;
  width: 100%;
}

header ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  width: 65%;
  margin: 30px 0;
}
@media (max-width: 500px) {
  header ul{
    width: 90%;
  }
}


header ul li {
  color: white;
  font-size: 1.5rem;
  font-weight: 200;
}

header .search {
  width: 65%;
  display: flex;
  place-items: center;
  margin: 40px 0;
}

@media (max-width: 500px) {
  header .search{
    width: 90%;
  }
}

header .search input{
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.300);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: #F9F9F9;
  padding-left: 60px;
  position: relative;
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 200;
}

header .search input::placeholder{
  color: white;
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  opacity: 50%;
}

header .search img {
  position: absolute;
  z-index: 1;
  width: 20px;
  margin-left: 20px;
}

main{
  width: 65%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
}
@media (max-width: 500px) {
  main{
    width: 90%;
  }
}

main .item{
  width: 100%;
  margin: 30px 0;
}

main .item .info{
  display: flex;
  justify-content: space-between;
}

main .item .info img{
  width: 25px;
}

main .item h2{
  font-weight: 400;
  font-size: 1.6rem;
  margin: 8px 0;
}

main .item p{
  font-size: 18px;
  color: #717171;
  font-weight: 300;
}


