* {
  transition: 400ms linear;
}

body {
  font-family: "Poppins", sans-serif;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-color: #422347;
  color: #0098f6;
}

#containerAll {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background-color: #fff;
  border-radius: 10px;
  margin-top: 30px;
  width: calc(300px + 1.5vw);
  padding: 20px 0 20px 0;
  box-shadow: 0 0 3px 1px #0098f6;
}

#contentHeader {
  display: flex;
  align-items: center;
  justify-content: center;

  & h1 {
    font-size: 1.5rem;
    margin-bottom: 4px;
    font-weight: 600;
  }

  & h2 {
    font-size: 1rem;
  }

  & img {
    width: 100px;
    height: 100px;
  }
}

#socialLinks {
  display: flex;
  gap: 10px;
}

.linkSocial {
  display: inline-block;
  transition: 400ms linear;
  &:hover {
    transform: scale(1.15);
    text-shadow: 0px 3px 40px #004b7a;
  }
}

.bi {
  font-size: 23px;
  color: #0098f6;
}

nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blockLinkADDInformation {
  text-decoration: none;
  color: #0098f6;
  font-weight: 600;

  border-radius: 10px;

  display: inline-flex;
  justify-content: center;
  align-items: center;

  width: calc(250px + 1.5vw);
  height: 50px;
  background-color: #fff;
  transition: 400ms linear;
  box-shadow: 0 0 3px 1px;

  &:hover {
    transform: scale(1.15);
    background-color: #0098f6;
    color: #fff;
  }
}

#nameFooter {
  opacity: 0.5;
}

@media (min-width: 700px) {
  #containerAll {
    margin-top: 40px;
    width: calc(400px + 1.5vw);
    padding: 30px 0 30px 0;
  }

  #contentHeader {
    & h1 {
      font-size: 2rem;
    }

    & h2 {
      font-size: 1.2rem;
    }

    & img {
      width: 130px;
      height: 120px;
    }
  }

  .bi {
    font-size: 30px;
  }

  .blockLinkADDInformation {
    width: calc(340px + 1.5vw);
    font-size: 1.1rem;
  }
}

@media (min-width: 1024px) {
  #containerAll {
    margin-top: 40px;
    width: calc(600px + 1.5vw);
    padding: 30px 0 30px 0;
  }

  #contentHeader {
    & h1 {
      font-size: 2.8rem;
    }

    & h2 {
      font-size: 1.35rem;
    }

    & img {
      width: 140px;
      height: 130px;
    }
  }

  .bi {
    font-size: 35px;
  }

  .blockLinkADDInformation {
    width: calc(510px + 1.5vw);
    height: 70px;
    font-size: 1.4rem;
  }
}

@media (min-width: 1024px) {
  #containerAll {
    margin-top: 40px;
    width: calc(600px + 1.5vw);
    padding: 30px 0 30px 0;
  }

  #contentHeader {
    & h1 {
      font-size: 2.8rem;
    }

    & h2 {
      font-size: 1.35rem;
    }

    & img {
      width: 140px;
      height: 130px;
    }
  }

  .bi {
    font-size: 35px;
  }

  .blockLinkADDInformation {
    width: calc(510px + 1.5vw);
    height: 70px;
    font-size: 1.4rem;
  }
}
