

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
  }
  main{
  min-height: 100vh;
  background: #fff;    
  display: flex;
  align-items: center;
  justify-content: center;
  }
  .profile_page3{
  background: #F5F1F1;
  min-height: 95%;
  width: 80%;
  border-radius: 0;
  z-index: 2;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  }
  
  .profile_page3 .link:hover{
    color: #fff;
    cursor: pointer;
  }
  
  .dashboard{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #D47EA5;
    justify-content: space-evenly;
    border-radius: 0 15px 15px 0;
    color: #6E3659;
    padding: 100px auto;
  }
  .user{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .user h4{
    font-size: 20px;
    padding: 20px 0 0 0;
  }
  .user a{
    text-decoration: none;
    color: #fff;
    font-size: 30px;
}
  .user img{
    /* width: 100px; */
    width: 20%;
    height: auto;
    border-radius: 50%;
    padding-top: 20px;
  }
  .link{
    display: flex;
    margin: 2rem 0rem;
    padding: 1rem 5rem;
    align-items: center; 
    text-align: center;
  }
  .link img{
    color: #fff;
    width: 26%;
    padding: 0 16px 0 0;
  }
  .link a{
    text-decoration: none;
    color: #6E3659;
  }
.interests{
    flex: 2;
}

.interests{
    margin-bottom: 3rem;
}
h3{
    color: black;
    font-weight: 600;
    font-size: 3rem;
    opacity: 0.8;
    padding: 60px;
    text-align: center;
}

h1{
    color: #6E3659;
    font-weight: 600;
    font-size: 2.5rem;
    padding-bottom: 20px;
}
.buttons{
    text-align: center;
    padding: 30px;
    /* margin: 20px; */
    
}
.btn{
    font-size: 20px;
    width: 250px;
    padding: 20px;
    margin: 40px;
    border-radius: 100px;
    border: 1px;
    letter-spacing: 2px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    background-color: #D47EA5;
}
.btn:hover{
    color:bisque;
    background-color: #6E3659;
}
.btn:active{
    transform: scale(0.98);
}