@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

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

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #4d4d4d;
  font-family: "Poppins", sans-serif;
}

.container {
  width: 400px;
  border-radius: 30px;
  background: #4d4d4d;
  box-shadow: 20px 20px 60px #343434, -20px -20px 60px #3b3b3b;
  padding: 20px;
  text-align: center;
}

.container .picture {
  width: 170px;
  height: 170px;
  margin: 10px auto;
}

.container .picture img {
  width: 100%;
  border-radius: 50%;
  border: 5px solid rgb(227, 224, 224);
}

.container h1 {
  color: rgb(216, 216, 216);
}

.container p {
  color: rgb(173, 173, 173);
  font-size: 18px;
}

.container .socials {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.container .socials i {
  margin: 10px;
  font-size: 40px;
  color: rgb(211, 211, 211);
}