body {
   background-color: #0c0918;
   color: gray;
   height: 100vh;
   width: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

main {
    width: 100%;
    max-width: 400px;
    background: linear-gradient(
   160deg,
  #0f0f14,
  #1a132d,
  #0b0b10
);
 /*box-shadow: 0px 0px 1px rgb(75, 212, 75);*/
 box-shadow: 1px 1px 5px #0f0f14;
border-radius: 15px;
padding: 30px 15px 60px 15px;
overflow-y: hidden;
}

h1 {
 margin: 0 auto;
 border-bottom: solid 1px gray;
 text-align: center;
 width: 90%;
 font-size: 35px;
 padding-bottom: 15px;
  color: rgb(116, 238, 116);
}


#profile {
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    position: relative;
}

#overlay {
    background-image: url(overlay.png);
    z-index: 2;
    border-radius: 50%;
    transform: translateX(-5%);
    transform: translateY(-42%);
    width: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    position: absolute;
}

#profile img {
    width: 170px;
    border-radius: 50%;
    transform: translateX(-5%);
    z-index: 1;
}



#about h2 {
    text-align: center;
    color:rgb(116, 238, 116);
    font-size: 20px;
    line-height: 0;
    display: inline-block;
}

#about p {
    text-align: center;
    width: 100%;
    max-width: 290px;
    margin: 10px auto;
    line-height: 30px;
}

#line-container {
    display: flex;
    justify-content: center;
}

.line {
    background-color: lightgray;
    height: 1px;
    width: 35%;
    line-height: 0;
    display: inline-block;
    margin-top: 5%;
}

.line:nth-of-type(1) {
    margin-right: 5px;;
}

.line:nth-of-type(2) {
    margin-left: 5px;;
}