@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;1,300&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  font-size: 62.5%; /* 1rem = 10px */
}

body {
  background-color: #926e6e;
  font-family: "Poppins";
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 90vh;
  max-width: 102.4rem;
  margin: 0 auto;
}

.imgPerfil {
  width: 20rem;
  border-radius: 50%;
  margin-bottom: 2rem;
  margin-top: 5rem;
}

h3 {
  text-transform: uppercase;
  font-size: 1.5rem;
  color: #201f17;
}

.imgIcon {
  display: flex;
  width: 2.5rem;
  align-items: center;
  text-align: center;
}

li {
  list-style: none;
}

.link {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-family: 'Dm Sans';
  color: #3a3729;
}

button {
  display: flex;
  width: 25rem;
  align-items: center;
  margin-bottom: 1rem;
  border-radius: 1rem;
  height: 4rem;
  border: none;
  background-color: #df8f9b;
  cursor: pointer;
  padding: 0.5rem;
  transition: 300ms;
}

button:hover {
  background-color: #c27984;
}

p {
  color: #1d1c15;
  text-transform: capitalize;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.linkFooter {
  color: #1d1c15;
  text-decoration: none;
}
