* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: hsl(0, 0%, 8%);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: hsl(0, 0%, 100%);
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

main {
    background-color: hsl(0, 0%, 12%);
    border-radius: 10px;
    padding: 2rem 2rem 1rem 2rem;
}

.photo {
    margin: 0 1rem 1rem 1rem;
    border-radius: 50%;
    max-width: 70px;
}

.name {
    font-weight: 400;
    font-size: 1.25rem;
}

.london {
    margin: 0.5rem 0 1rem 0;
    color: hsl(75, 94%, 57%);
    font-size: .70rem;
}

.quote {
    margin: 1.25rem 1rem 1.25rem 1rem;
    font-weight: 400;
}

.buttons {
    display: flex;
    flex-direction: column;
}

button {
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1rem;
    padding: 0.75rem 2.5rem .75rem 2.5rem;
    background-color: hsl(0, 0%, 20%);
    color: hsl(0, 0%, 100%);
    border: none;
    border-radius: 5px;
}

button:hover {
    color: hsl(0, 0%,8%);
    background-color: hsl(75, 94%, 57%);
}

.attribution {
    margin-top: 1rem;
    font-size: 11px;
    text-align: center;
    display: inline-block;
}
.attribution a {
    color: hsl(228, 45%, 44%)
}
