* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #141414;
    line-height: 1.6;
}
.box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: 50px;
    width: 400px;
    height: 570px;
    background-color: #1f1f1f;
    border: 2px solid #161616;
    border-radius: 10px;
    box-sizing: border-box;
}
img {
    height: 140px;
    width: 120px;
    border-radius: 50%;
    padding-bottom: 20px;
}
.hero-info {
    font-family: sans-serif;
    padding: 3px;
}
.name {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
}
.city {
    color: #a2f77c;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 600;
    text-shadow: 0 0 2px #a2f77c;
}
.profession {
    color: #e2e2e2;
    font-size: 0.83em;
    padding-top: 15px;
    margin-bottom: 8px;
    font-family: sans-serif;
}
.bu-links {
    width: 65%;
    padding: 10px;
    margin: 8px;
    background-color: #333333;
    border: 2px solid #1f1f1f;
    border-radius: 8px;
}
.bu-links:hover {
    box-shadow: 3px 6px 10px #000;
}
.bu-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
}
.attribution { 
    font-size: 12px; 
    text-align: center;
    padding: 20px 0;
    color: aliceblue;
}
.attribution a {
    text-decoration: none;
    color: hsl(228, 45%, 44%);
    transition: color 0.4s;
}
.attribution a:hover {
    color: #03fe;
}
