* {
  margin: 0;
  padding: 0;
  /* --content_width: 60%;
  --spContent-width: 375px; */
}

.top_section {
  display: flex;
  width: 60%;
  margin: 64px auto;
}

.top_content {
  width: 30%;
  height: 300px;
  margin: 0 auto;
}

.top_content_img {
  width: 100%;
  height: 150px;
  margin-bottom: 16px;
  transition: transform 0.1s;
}

.top_content_img > img {
  width: 100%;
  height: 150px;
}

.top_content_img:hover {
  transform: scale(1.05);
}

.top_content p {
  text-align: center;
}

.top_content a {
  border-bottom: solid 1px #222;
  color: #222;
  font-size: 0.8em;
  transition: color 0.4s, background 0.4s;
}

.top_content a:hover {
  color: #fff;
  background: #222;
}

@media (max-width: 500px) {
  .top_section {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 135px auto 64px;
  }

  .top_content {
    width: 90%;
    height: 300px;
    margin: 0 auto;
  }

  .top_content_img {
    width: 100%;
    height: 150px;
    margin-bottom: 16px;
    transition: transform 0.1s;
  }

  .top_content_img > img {
    width: 100%;
    height: 150px;
  }

  .top_content_img:hover {
    transform: scale(1.05);
  }

  .top_content p {
    text-align: center;
  }

  .top_content a {
    border-bottom: solid 1px #222;
    color: #222;
    font-size: 0.8em;
    transition: color 0.4s, background 0.4s;
  }

  .top_content a:hover {
    color: #fff;
    background: #222;
  }
}
