@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500&family=Lexend+Deca&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Lexend Deca", sans-serif;
  font-weight: 400;
  background-color: #f3f5f7;
}

header {
  background: linear-gradient(88.27deg, #574ae8 0%, #3ea1db 100%);
  height: 250px;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 900px) {
  header {
    height: 200px;
  }
}
header section {
  width: 100%;
  max-width: 900px;
  margin: 0px auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 900px) {
  header section {
    font-size: 14px;
  }
}
header section h1,
header section h2 {
  font-family: "Lexend Deca", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 24px;
}
@media (max-width: 900px) {
  header section h1,
  header section h2 {
    font-size: 18px;
  }
}
header div {
  width: 100%;
  max-width: 900px;
  margin: 0px auto;
  background-color: hsla(0, 0%, 100%, 0.2);
  display: flex;
  align-items: center;
  padding: 20px;
  height: 65px;
  border-radius: 5px;
}
@media (max-width: 900px) {
  header div {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  header div {
    height: 40px;
  }
}
header div img {
  width: 30px;
  height: 30px;
}
@media (max-width: 900px) {
  header div img {
    width: 20px;
    height: 20px;
  }
}
header div input {
  width: 100%;
  max-width: 900px;
  margin: 0px auto;
  background: none;
  border: none;
  padding: 20px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 900px) {
  header div input {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  header div input {
    height: 40px;
  }
}
header div input:focus {
  outline: none;
}
header div input::placeholder {
  color: hsla(0, 0%, 100%, 0.6);
}
@media (max-width: 900px) {
  header {
    padding: 40px 20px;
  }
}

main {
  width: 100%;
  max-width: 900px;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 80px auto;
}
@media (max-width: 900px) {
  main {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  main {
    padding: 0 20px;
    margin: 50px auto;
  }
}

article {
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px hsla(240, 24%, 10%, 0.051);
  color: #717171;
  border: 2px solid transparent;
  padding: 25px;
  width: 100%;
  height: auto;
  border-radius: 5px;
}
article:hover, article:active {
  border: 2px solid hsla(240, 24%, 10%, 0.051);
}
article h1 {
  color: #1a202c;
  margin-bottom: 20px;
  font-family: "Lexend Deca", sans-serif;
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 15px;
}
@media (max-width: 900px) {
  article h1 {
    font-size: 18px;
  }
}
article:not(:last-child) {
  margin-bottom: 50px;
}
@media (max-width: 900px) {
  article:not(:last-child) {
    margin-bottom: 20px;
  }
}
article p {
  line-height: 32px;
  font-size: 18px;
}
@media (max-width: 900px) {
  article p {
    font-size: 14px;
  }
}

article section {
  display: flex;
  justify-content: space-between;
}
article section p {
  color: #717171;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
}
article section img {
  cursor: pointer;
  width: 25px;
  height: 25px;
}
article section img.clicked {
  filter: invert(20%) sepia(100%) saturate(5000%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

/*# sourceMappingURL=style.css.map */
