@import "../styles/animation.css";

.me {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-position: left;
  background-size: 100%;
  background-repeat: no-repeat;
}

.me__container {
  display: flex;
  min-height: 100vh;
  width: 85%;
  align-items: center;
  justify-content: space-evenly;
  align-self: center;
}

.me__pic img {
  height: 350px;
  width: 40 0px;
  border-radius: 50%;
  border: 2px solid var(--text-ligth);
  filter: var(--shadow-blue);
  animation: floatingIcon 3s ease infinite 0.4s;
}

.me__text {
  font-family: var(--text-hiligths);
  color: var(--text-ligth);
}

.me__titulo {
  font-family: var(--titles);
  font-size: var(--title-size);
  margin-bottom: 5px;
  font-weight: 600;
  color: white;
}

.me__description {
  font-size: var(--subtitles);
  text-align: center;
  font-family: var(--text-hiligths);
  margin-bottom: 8px;
  animation: text-blur 1.4s cubic-bezier(0.55, 0.083, 0.68, 0.53) 0.1s both;
}

#me .social-links {
  text-align: center;
  width: 100%;
  margin: auto;
}

#me .social-links a {
  font-size: 24px;
  display: inline-block;
  color: #45505b;
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

#me .social-links a:hover {
  color: var(--primary-color);
}



@media screen and (max-width: 768px) {
  .me__container {
    flex-direction: column-reverse;
    justify-content: center;
    height: 100vh;
  }

  .me__pic img {
    min-width: 275px;
    max-height: 280px;
    max-width: 280px;
    margin-top: 3rem;
  }

  .me__titulo {
    text-align: center;
    font-size: calc(var(--descriptions) + 0.6rem);
    margin-top: 10px;
  }
  
  .me__description {
    font-size: calc(var(--middle-size) + 0.8rem);
  }
}