html, body {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

body:before {
    content: "";
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),url(/assets/img/mel-shapcott-abstract-artist.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
 .profile {
     background-color: transparent;
     max-width: 500px;
     margin: 5% auto 50px;
     border-radius: 20px;
     display: grid;
     grid-template-rows: auto 1fr auto;
     min-height: 400px;
     padding: 0;
}
 .box {
     box-shadow: none;
}
 .top-part {
     padding: 10px;
     border-radius: 20px 20px 0 0 ;
     display: flex;
     flex-direction: column;
}
 .top-part > img {
     width: 140px;
     height: 140px;
     object-fit: cover;
     border-radius: 50%;
     align-self: center;
}
 .top-part > p.name {
     color: #fff;
     font-family: 'Raleway', sans-serif;
     font-weight: 300;
     font-size: 50px;
     text-align: center;
     letter-spacing: 1px;
}
 .top-part > ul.badges {
     align-self: center;
     display: flex;
     list-style: none;
}
 ul.badges > li {
     margin-left: 5px;
     width: 25px;
     height: 25px;
     align-self: center;
}
 .bottom-part {
     border-radius: 0 0 20px 20px;
     padding: 20px 10px;
     display: flex;
     flex-direction: column;
}
 .bottom-part > ul.social {
     display: flex;
     align-self: center;
}
 ul.social > li {
     margin: 0 13px;
}
 li > a {
     color: #fff;
     font-size: 30px;
     transition: color 0.3s;
}
 li > a:hover {
     color: #cfcfcf;
     transition: color 0.3s;
}
 .bio {
     padding: 5px;
}
 .bio > p {
     color: #fff;
     text-align: center;
     font-size: 23px;
}
 .bio a {
     color: #c9d1d9;
     text-decoration: none;
     transition: text-decoration 0.1s;
}
 .bio a:hover {
     text-decoration: underline;
     transition: text-decoration 0.1s;
}
 .projects > h1 {
     color: #fff;
     font-size: 15px;
     margin: 10px;
}
 .projects > .project-box {
     display: flex;
     margin: 0 10px 15px;
     padding: 6px 17px;
     border: 2px solid #fff;
     border-radius: 15px;
}
 .project-box > img {
     width: 73px;
     height: 73px;
     border-radius: 50%;
     object-fit: cover;
}
 .project-box > p {
    color: #fff;
    margin-left: 20px;
    font-size: 18px;
    padding: 26px 0;
    text-align: left;
    max-width: 219px;
    font-weight: bold;
}
.project-box > p:hover {
    text-decoration: underline;
}
#project-1 p {
     color: #fff;
     margin-left: 20px;
     margin-top: 5%;
     font-size: 18px;
     text-align: left;
     max-width: 219px 
}
 @media (max-width: 600px) {
     body {
         overflow-y: scroll;
    }
     .box.profile {
         width: 100%;
         height: 100%;
         margin: 0;
    }
     .top-part {
         border-radius: 0;
    }
     .bottom-part {
         border-radius: 0;
    }
}
