main {
  display: block;
  margin-top: 100px;
  width: 100%;
}
.search-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 90px;
}
.search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 617px;

  margin: 26px auto 20px;

  transform: translateX(13px);
}
.search-input {
  box-sizing: border-box;
  width: 559px;
  height: 62px;
  margin-right: 20px;
  padding-left: 28px;

  font-size: 25px;
  color: black;

  border: 1px solid #c4c4c4;
  border-radius: 10px;
  outline: none;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.search-img {
  width: 20px;
  height: 20px;

  background-image: url("../assets/imgs/magnifier.png");
}
.search-button {
  margin-top: 10px;

  background-color: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}
.hashtags {
  margin-left: -53px;

  font-weight: 500;
  font-size: 18px;
  text-align: center;
}
.hashtags-popular {
  color: #636363;
}
.hashtags a {
  color: #000000;
  text-decoration: none;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  width: 286px;
  height: 272px;
  margin-bottom: 47px;

  border: 1px solid #c4c4c4;
  border-radius: 10px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.card-header {
  margin: 15px auto 5px;

  font-weight: 500;
  font-size: 24px;
  color: #da1e1e;
}
.card-list {
  align-self: flex-start;
  margin-left: 15px;
  padding: 0;

  list-style: none;
  font-size: 20px;
  color: #636363;
}


@media screen and (max-width: 925px) {
  .cards {
    justify-content: space-around;
  }
}

@media screen and (max-width: 760px) {
  .search {
    width: 450px;

    transform: translateX(13px);
  }
  .search-input {
    width: 400px;
  }
  .hashtags {
    margin-left: 0;
  }
  .card {
    width: 230px;
    height: 245px;
  }
  .card-header {
    font-size: 20px;
  }
  .card-list {
    font-size: 15px;
  }
}


@media screen and (max-width: 600px) {
  .search {
    width: 300px;
  }
  .search-input {
    width: 250px;
  }
  .card {
    width: 65%;
    height: auto;
  }
  .card-list {
    font-size: 18px;
  }
}
