@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    box-sizing: border-box;
}

:root {
    --Green: hsl(75, 94%, 57%);
    --White: hsl(0, 0%, 100%);
    --Grey-700: hsl(0, 0%, 20%);
    --Grey-800: hsl(0, 0%, 12%);
    --Grey-900: hsl(0, 0%, 8%);
}

body {
    background-color: var(--Grey-900);
    color: var(--White);
    font-family: "Inter", sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100dvh;
}

.container {
    min-width: 328px;
    background-color: var(--Grey-800);
    text-align: center;
    padding: 15px 25px;
    border-radius: 15px;
}

.container img {
    border-radius: 50%;
    width: 100%;
    max-width: 80px;
    margin-bottom: 10px;
}

h2, .green-text{
    margin: 10px;
    font-weight: 600;
}

.green-text {
    color: var(--Green);
    font-size: 0.85rem;
}

.headline {
    font-size: 0.8rem;
    margin: 30px 0 20px 0;
}

.nav ul {
    list-style: none;
    padding: 0;
}

.nav ul li {
    background-color: var(--Grey-700);
    margin-bottom: 15px;
    padding: 10px;
    border: 2px solid var(--Grey-700);
    border-radius: 5px;
    cursor: pointer;
}

.nav ul li:hover {
    color: var(--Grey-800);
    background-color: var(--Green);
    border-color: var(--Green);
}

.nav ul a {
    font-size: 0.85rem;
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.attribution { 
    font-size: 11px; 
    text-align: center; 
    position: absolute;
    bottom: 5%;
}

.attribution a { 
    color: hsl(228, 45%, 44%); 
}