body {
    font-family: 'Inter', sans-serif;
    background-color: hsl(0, 0%, 8%);
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    width: 80%;
    max-width: 21.875rem;
    background-color: hsl(0, 0%, 12%);
    border-radius: 0.75rem;
}

img {
    border-radius: 50%;
    width: 5.625rem;
    display: block;
    margin: 2.5rem auto;
    margin-bottom: 1.25rem;
}

h1 {
    font-weight: 600;
    font-size: 1.375rem;
    text-align: center;
    margin-bottom: -0.063rem;
}

h2 {
    font-weight: 600;
    font-size: 0.75rem;
    text-align: center;
    color: hsl(75, 94%, 57%);
}

p {
    font-size: 0.813rem;
    text-align: center;
    color: rgb(212, 212, 212);
    font-weight: 400;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

button {
    display: block;
    margin: 0 auto;
    margin-top: 1.063rem;
    width: 16.25rem;
    background-color: hsl(0, 0%, 20%);
    color: white;
    padding: 0.75rem 0.25rem;
    border: none;
    border-radius: 0.438rem;
    font-weight: 600;
}

button:last-child {
    margin-bottom: 2.5rem;
}

button:hover {
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 20%);
    cursor: pointer;
}