body{
    margin: 0;
    padding-top: 120px;
    background-color: #18191a;
    font-family: Arial, Helvetica, sans-serif;
    object-fit: cover;
    padding-bottom: 54px;
}
.back-to-main{
    display: flex;
    align-items: center;
    padding: 8px 6px;
    border-bottom: 1px solid grey;
}
.back-arrow{
    display: flex;
    margin-right: 10px;
}
.back-arrow button{
    padding: 6px 8px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}
.back-arrow button img{
    height: 25px;
}
.back-to-main p{
    margin: 0;
    color: white;
    font-size: 18px;
}
main{
    padding: 6px 8px;
}
.page-work{
    display: flex;
    padding: 4px 6px;
}
.page-work p{
    margin: 0;
    color: white;
    font-size: 16px;
}
.profiles{
    display: flex;
    flex-direction: column;
    flex: 1;
}
.profile-info{
    display: flex;
    padding: 6px 4px;
    flex: 1;
}
.profile-picture{
    width: 115px;
    height: 115px;
    display: flex;
}
.profile-picture img{
    height: 100%;
    width: 100%;
    border-radius: 50%;
}
.profile-description{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 4px;
    flex: 1;
}
.profile-name{
    margin: 0;
    color: rgb(218, 215, 215);
    font-size: 17px;
}
.mutual-friends{
    display: flex;
    margin-top: 4px;
    flex: 1;
    align-items: center;
}
.mutual-friends img{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: -4px;
}
.number-mutuals{
    padding-left: 10px;
    color: rgb(218, 215, 215);
    font-size: 16px;
    margin: 0;
}
.action-button{
    display: flex;
    padding: 4px 0;
    justify-content: space-between;
    max-width: 280px;
}
.action-button button{
    padding: 8px 30px;
    font-size: 17px;
    border: none;
    border-radius: 4px;
    color: white;
}
.add{
    background-color: rgb(19, 144, 233);
}
.remove{
    background-color: #3a3b3c;
}

.footer{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid black;
    display: flex;
    align-items: center;
    background-color: rgb(94, 92, 92);
    justify-content: space-between;
}
.footer p{
    margin: 0;
    color: white;
    font-size: 20px;
    text-decoration: none;
}
.footer button{
    background-color: grey;
    border: none;
    padding: 6px 13px;
    border-radius: 20px;
    cursor: pointer;
}
.footer div{
    padding: 10px 8px;
}
.footer a{
    text-decoration: none;
}
@media (min-width:1000px){
    body, .footer{
        width: 600px;
        border: 2px solid grey;
        border-radius: 2px;
        margin-left: 32%;
    }
    body{
        background-color: rgb(233, 231, 231);
    }
    main{
        background-color: #18191a;
    }
}