.home {
  width: 70%;
  align-items: center;
  margin: auto;
  margin-top: 10%;
}
.hm,
.sobre,
.hobbies {
  margin-bottom: 5%;
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  padding: 80px 10px;
  align-items: center;
  justify-content: space-evenly;
  background-color: #121212;
  box-shadow: 0 5px 10px rgba(137, 43, 226, 0.651);
}
.hobbies {
  flex-direction: column;
  text-align: start;
}
.hobbies h3 {
  padding: 20px;
  color: blueviolet;
}
.sobre h3 {
  text-align: center;
  align-items: center;
  color: blueviolet;
}
.hobbies span {
  color: #838383;
}
.sobre p {
  text-align: justify;
  margin-top: 15px;
  font-weight: 500;
  cursor: pointer;
  padding: 20px;
  word-spacing: 3px;
  line-height: 40px;
  font-size: 22px;
}
.ini {
  align-items: center;
  text-align: center;
}
.ini .button {
  font-size: 24px;
  padding: 10px 20px;
  background-color: blueviolet;
  border-radius: 10px;
  color: #121212;
  font-weight: bold;
}
.ini .button:hover {
  transform: scale(1.1);
  background-color: #121212;
  color: blueviolet;
  border: 3px solid blueviolet;
}
.ini .cv,
.ini .proj {
  color: blueviolet;
  font-size: 1.3em;
}
.img {
  width: 600px;
}

[data-anime] {
  opacity: 0;
  transition: .8s;
}
[data-anime="top"] {
  transform: translate3d(0, -100%, 0);
}
[data-anime="left"] {
  transform: translate3d(-100%, 0, 0);
}
[data-anime="right"] {
  transform: translate3d(100%, 0, 0);
}
[data-anime="bottom"] {
  transform: translate3d(0, 100%, 0);
}
[data-anime].animated {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
#alerta {
  position: fixed;
  z-index: 999;
  top: 120px;
  left: 30px;
}


@media (max-width: 1200px) {
  .home {
    width: 90%;
    margin: 30% auto;
  }
  .hm,
  .sobre,
  .hobbies {
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
  }
  .sobre p {
    text-align: justify;
    padding: 10px;
  }
  .sobre img {
    width: 90%;
    align-items: center;
  }
}
