.home {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.home > .mainhome {
  width: 330px;
}

.mainhome h1 {
  font-size: 4rem;
}

.areas {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 0.75rem;

  margin-top: -5px;
}

.btnsredes {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  justify-content: end;
}

.mincont {
  display: block;
}

.mincont a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #212529;
  padding: 10px;
  width: 35px;
  height: 35px;
  border-radius: 5px;

  transition: 0.2s;
}

.mincont a:hover {
  transform: translate(2px, 2px) rotate(5deg);
  transition: 0.2s;
}

.mincont a > img {
  width: 25px;
}


