*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  
  body{
    background-image: linear-gradient(to right, #AC76E0 , #FC83DE);
    font-family: sans-serif;
  }
  
  .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: space-between;
    /*border: 1px solid red;*/
    height: 100vh;
  }
  
  .container .perfil{
    margin: 1.5rem;
  }
  
  .container .perfil .username{
    color: #fff;
    margin-top: 0.8rem;
    font-weight: bold;
  }
  
  .container .perfil .photo{
    height: 8rem;
    width: 8rem;
    border-radius: 50%;
  }
  
  .custom-button{
    cursor: pointer;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-weight: bold;
    text-align: center;
    width: 95%;
    padding: 1rem;
    height: 3rem;
    margin: 0.5rem;
  }
  
  .custom-button:hover{
    border-color: transparent;
  }
  
  a{
    text-decoration: none;
  }
  
  @media (min-width: 1000px)
  {
    .custom-button{
      width: 60%;
    }
  
  }