
:root {
    --body-bg-color: #FAF7FD;
    --purple: #003cff;
  }

/*


:root {
    --body-bg-color: #FAF7FD;
    --purple: #BB99DD;
  }


*/

  *{
    color: var(--purple);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }

  body{
    background-color: var(--body-bg-color);
    width: 100vw;
    padding-top: 60px;
    overflow: auto;
  }

  
  .container{
    width: fit-content;
    margin:auto;
  }

  .profile{
    display: flex;
    flex-flow: column;
    align-items: center;
    margin-bottom: 10px;
  }

  .profile-image{
    width: 110px;
    height: 110px;
    border-radius: 110px;
    margin-bottom:10px;
    padding: 5px;
    border: 2px solid var(--purple);
  }

  .profile-name{
    font-size: 12px;
    font-weight: 300;
}

.social-tree, .social-tree-icon{
    list-style: none;
    margin: 10px;
}

.social-tree li{
    width: 240px;
    height: 40px;
    padding:5px 0px;
    margin:20px;
    text-align: center;
    border: 1.5px solid var(--purple);
    font-weight: 400;

}

.social-tree li:hover, .social-tree li:focus{
  transform: scale(1.01);
  box-shadow: 2px 1px 5px var(--purple);  
}

.social-tree-icon{
    display: flex;
    justify-content: center;
    gap:35px;
    
}

.social-tree-icon li{
  font-size: 20px;
}

a{
    text-decoration: none;
    color: inherit;
}

.links{
  display: inline-block;
  width:220px;
  cursor: pointer;
}


/* Modal*/

.modal{
  color: black;
  position:sticky;
  bottom:100%;
}

.modal-container{
  width: 600px;
  height: 550px;
  margin-right: auto;
  margin-left: auto;
  padding: 80px 40px; 
  background-color: #fff;
  display: block;
  border: 1px solid rgb(189, 189, 189);
  border-radius: 2%;
  position: relative;
}

.modal-title{
  font-size: 32px;
  padding: 5px;
  margin-bottom: 15px;
}

.modal-description{
  color: rgb(51, 51, 51);
  font-size: 22px;
  padding: 5px;
  margin-bottom: 15px;
}

.modal-item{
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 15px;
  font-size: 20px;
  font-weight: 900;
  margin-left: 60px;
}

.modal-item li {
  color: black;
}

.modal-item-bold{
  color: #914bd6;
  font-weight: 900;
}

.modal-btn{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.modal-btn li {
  margin-right: auto;
  margin-left: auto;
}

.modal-close{
  position: absolute;
  top:0px;
  right:0px;
  background-color: rgba(255, 81, 110, 0.658);
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
  font-weight: 800;
  font-size: xx-large;
  border-radius: 5px;
  cursor: pointer;
}


.display-block{
  display: block;
}

.display-none{
  display: none;
}