*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --clr-grey-900: #141414;
    --clr-grey-800: #1F1F1F;
    --clr-grey-700: #333333;
    --clr-green: #c4f82a;
    --clr-white: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--clr-grey-900);
    color: var(--clr-white);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-size: 14px;
    font-family: sans-serif;
}

.wrapper {
    background-color: var(--clr-grey-800);
    border-radius: .8em;
}

.inner {
    margin: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 1em;
    align-self: stretch;
}

li {
    list-style-type: none;
    display: block;
    background-color: var(--clr-grey-700);
    text-align: center;
    padding-block: .8em;
    border-radius: .4em;
    width: 100%;
}

li:hover {
    background-color: var(--clr-green);
    color: var(--clr-grey-900);
    cursor: pointer;
}

img {
    width: 80px;
    border-radius: 50%;
}

.info {
    text-align: center;
}

.info h1 {
    margin-bottom: .5em;
    font-size: 1.5rem;
    font-weight: normal;
}

.info p {
    margin-top: 0;
    color: var(--clr-green);
}

.description {
    padding-inline: .4em;
}

@media (min-width: 400px) {
    .description {
        padding-inline: 1.5em;
    }
}