#profile{
    display: flex;
    justify-content:center;
    height: 100vh;
    margin-left: 0;
    margin-right: 0;
    background-image: url(./asset/bg2.jpg);
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
  }
  /* .dp{
    border-radius: 50%;
  } */
  .section_pic-container{
    display: flex;
    height: 400px;
    width: 400px;
    margin: auto 0;
  }
  .section_text{
    align-self: center;
    text-align: center;
  }
  .section_text p{
    font-weight: 600;
  }
  .section_text_p1{
    text-align: center;
  }
  .section_text_p2{
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  .title {
    font-size: 3rem;
    text-align: center;
  }
  
  #socials-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
  }
  /* ICONS */
  
  .icon {
    cursor: pointer;
    height: 2rem;
  }
  
  /* BUTTONS */
  
  .btn-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  /* .btn {
    font-weight: 600;
    transition: all 300ms ease;
    padding: 1rem;
    width: 8rem;
    border-radius: 2rem;
  } */
  
  /* .btn-color-1,
  .btn-color-2 {
    border: rgb(53, 53, 53) 0.1rem solid;
  }
  
  .btn-color-1:hover,
  .btn-color-2:hover {
    cursor: pointer;
  }
  
  .btn-color-1,
  .btn-color-2:hover {
    background: rgb(53, 53, 53);
    color: white;
  }
  
  .btn-color-1:hover {
    background: rgb(0, 0, 0);
  }
  
  .btn-color-2 {
    background: none;
  }
  
  .btn-color-2:hover {
    border: rgb(255, 255, 255) 0.1rem solid;
  } */
  
  /* .button {
    height: 50px;
    width: 160px;
    position: relative;
    background-color: transparent;
    cursor: pointer;
    border: 2px solid #252525;
    overflow: hidden;
    border-radius: 30px;
    color: #333;
    transition: all 0.5s ease-in-out;
  }
  
  .btn-txt {
    z-index: 1;
    font-weight: 600;
    letter-spacing: 2px;
  }
  
  .type1::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s ease-in-out;
    background-color: #333;
    border-radius: 30px;
    visibility: hidden;
    height: 10px;
    width: 10px;
    z-index: -1;
  }
  
  .button:hover {
    box-shadow: 1px 1px 200px #252525;
    color: #fff;
    border: none;
  }
  
  .type1:hover::after {
    visibility: visible;
    transform: scale(100) translateX(2px);
  } */
  
  .button {
    --color: #427973;
    padding: 0.8rem 1.4rem;
    background-color: transparent;
    border-radius: .3rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: .5s;
    font-weight: 400;
    font-size: 15px;
    border: 1px solid;
    font-family: inherit;
    text-transform: uppercase;
    color: var(--color);
    z-index: 1;
   }
   
   .button::before, .button::after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    background-color: var(--color);
    transition: 1s ease;
   }
   
   .button::before {
    top: -1rem;
    left: -1rem;
   }
   
   .button::after {
    left: calc(100% + 1rem);
    top: calc(100% + 1rem);
   }
   
   .button:hover::before, .button:hover::after {
    height: 410px;
    width: 410px;
   }
   
   .button:hover {
    /* color: rgb(10, 25, 30); */
    color: white;
   }
   
   .button:active {
    filter: brightness(.8);
   }