.circle {
    display: block;
    width: 240px;
    height: 240px;
    margin: 0em auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-border-radius: 99em;
    -moz-border-radius: 99em;
    border-radius: 99em;
    border: 5px solid #eee;
    box-shadow: -1px 3px 16px -1px rgba(0, 0, 0, 0.3);
  }
  
  [data-dark-mode] .circle {
    display: block;
    width: 240px;
    height: 240px;
    margin: 0em auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-border-radius: 99em;
    -moz-border-radius: 99em;
    border-radius: 99em;
    border: 5px solid #282b30;
    box-shadow: -1px 3px 16px 2px #131518;
    }
  
  @media screen and (max-width:300px) { 
    .circle {
      display: block;
      width: 200px;
      height: 200px;
      margin: 0em auto;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      -webkit-border-radius: 99em;
      -moz-border-radius: 99em;
      border-radius: 99em;
      border: 5px solid #eee;
      box-shadow: -1px 3px 16px -1px rgba(0, 0, 0, 0.3);
    }
  }
    
  @media screen and (max-width:300px) { 
    [data-dark-mode] .circle {
      display: block;
      width: 200px;
      height: 200px;
      margin: 0em auto;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      -webkit-border-radius: 99em;
      -moz-border-radius: 99em;
      border-radius: 99em;
      border: 5px solid #282b30;
      box-shadow: -1px 3px 16px 2px #131518;
    }
  }

.text-right {
    text-align: right;
    float: right;
}

.py-52 {
  padding-top: 3rem !important;
  padding-bottom: 2.2rem !important;
}


