.googleFeed .header,
.googleFeed h2 {
  text-align: center;
  color: var(--text-color);
  font-family: Aboreto;
  position: relative;
}
.googleFeed {
  height: fit-content;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.googleFeed .header {
  text-align: center;
  height: 25%;
  padding: 5%;
}

.googleFeed .header h2::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 110%;
  top: 150%;
  background-color: var(--accent-color);
}

.googleFeed .feed {
  width: 70%;
}

.googleFeed .block {
  height: 300px;
  width: 250px;
  background-color: rgb(245, 245, 245);
  border: 3px solid var(--secondary-color);
  margin: 0 auto;
}

/* face */
.googleFeed .block div:nth-of-type(1) {
  display: flex;
  height: 40px;
  width: 40px;
  background-color: var(--accent-color);
  margin: 5% auto;
  padding: 2%;
  border-radius: 50%;
}
/* name */
.googleFeed .block p {
  max-width: 90%;
  margin: 5% auto;
  text-align: center;
}
.googleFeed .block p:nth-of-type(2) {
  height: 50%;
  overflow-y: auto;
}

.googleFeed .block p:nth-of-type(2):hover {
  overflow-y: auto;
}
.googleFeed .block div:nth-of-type(2) {
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.googleFeed .google_button {
  margin: 50px 10px;
  /* padding: 18px 10px; */
}
@media (max-width: 1158px) {
  .googleFeed .header h2::after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    position: unset;
    margin-top: 5%;
    background-color: var(--accent-color);
  }

  .googleFeed .feed {
    width: 100%;
  }

  .googleFeed .block {
    width: 250px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .googleFeed .block p:nth-of-type(2) {
    overflow-y: hidden;
  }

  .googleFeed .block p:nth-of-type(2):hover {
    overflow-y: auto;
  }
}
