body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

header {
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
    color: white;
    display: flex;
    flex-flow: row-reverse wrap;
    justify-content: center;
}

#title {
    padding: 1rem;
}

#role {
    background-color: lightgray;
    padding: 5rem;
    font-weight: bold;
}

#image {
    border-radius: 20%;
    width: 150px;
    height: 150px;
    margin: 1rem;
}

#location {
    border: 2px dotted darkgray;
    border-radius: 5px;
    padding: 1rem;
    margin: 1rem;
}

#location::before {
    content: '🗺'
}

.friendList {
    padding: 1rem;
    background-color: ghostwhite;
    margin: 1rem;
    box-shadow: 1px 1px 5px 0px black;
    border-radius: 5px;
}