.title {
  font-size: 4em;
  padding-top: 5rem;
  padding-bottom: 2rem;
}

#cardsset {
  padding-inline: 1rem;
  max-width: 90rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2.1rem;
  margin-top: 2rem;
}

.profilepic {
  height: 180px;
  border-radius: 100%;
  margin: 2rem;
}

.username {
  font-family: "Comfortaa", cursive;
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-color);
}

.profilecard {
  font-family: "Comfortaa", cursive;
  background-color: var(--result-card-color);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  width: 300px;
  padding: 10px;
  margin: 0 auto;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.profilecard:hover {
  scale: 110%;
  transition-duration: 300ms;
}

.details {
  margin-bottom: 2.5rem;
  margin-top: 1.5rem;
  display: flex;
  justify-items: center;
  justify-items: center;
  gap: 40px;
}

.details > a {
  color: var(--secondary-color);
  scale: 180%;
}

#socials:hover {
  color: #777;
}

@media only screen and (max-width: 400px) {
  .title {
    font-size: 3em;
  }
}
