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

 body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #323232;
   font-family: 'Tangerine', serif;
        font-size: 28px;


 }

 .container {
    width: 400px;
    border-radius: 30px;
    background-color: #3d3d3d;
    box-shadow: 20px 20px 60px #343434 -20px 60px #3b3b3b;
    padding: 20px;
    text-align: center;
 }
 .container .picture {
    width: 170px;
    height: 170px;
    margin: 20px auto;
 }
  .container .picture img {
    width: 100%;
    border-radius: 50%;
    border:5px solid rgb(215, 215, 215);

  }

  .container h1 {
    color: #c0c2c5;
  }
  .container p {
    color: #cb7ba7;
    font-size: 18px;
  font-family: "Sofia", sans-serif !important;
  }

  .container .social{
    display: flex;
    justify-content: center;
    padding: 10px 0;
  }
  .container .social i {
    color: rgb(41, 184, 212);
    cursor: pointer;
  }
