* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter' , sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(0, 0%, 8%);
    color: hsl(0, 0%, 100%);
    min-height: 100vh;
}

.container {
    background-color: hsl(0, 0%, 12%);
    width: 100%;
    max-width: 375px;
    text-align: center;
    border-radius: 10px;
    padding: 40px;
}

#name {
    font-weight: 600;
    font-size: 1.5rem;
    margin: 10px;
}

#place {
    color: hsl(75, 94%, 57%);
    font-size: 14px;
    font-weight: 400;
}

#quote {
    margin-top: 10px;
    font-weight: 400;
    font-size: 14px;
    padding: 15px;
}

img {
    border-radius: 50%;
    height: 80px;
    margin-bottom: 20px;
}

.ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

a {
    background-color: hsl(0, 0%, 20%);
    color: hsl(0, 0%, 100%);
    font-size: 14px;
    list-style: none;
    text-decoration: none;
    width: 100%;
    max-width: 270px;
    padding: 10px;
    margin: 7px 0;
    border-radius: 10px;
}
a:hover{
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 8%);
    transition: background-color 0.3s, color 0.3s;
}