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

body {
    font-family: system-ui, sans-serif;
    line-height: 1.6;
    color: #222;
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 4rem;
}

h1 {
    font-size: 1.4rem;
}

nav {
    display: flex;
    gap: 1.5rem;
}

nav a {
    text-decoration: none;
    color: inherit;
    opacity: 0.6;
}

nav a:hover {
    opacity: 1;
}

section {
    margin-bottom: 3rem;
}

h2 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.4;
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

ul li {
    margin-bottom: 1.5rem;
}

ul li a {
    font-weight: 600;
    color: inherit;
}

ul li p {
    opacity: 0.6;
    font-size: 0.95rem;
}

a {
    color: inherit;
}

footer {
    margin-top: 4rem;
    text-align: center;
}

.emblem {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0.65;
}
