@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
    font-family: 'Courier Prime', 'Courier New', Courier, monospace;
    background-color: white;
    color: black;
    margin: 0;
    padding: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-transform: lowercase;
}

header {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.site-title {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.site-title a, .site-title a:visited {
    color: inherit;
    text-decoration: none;
}

.site-title .fur {
    color: red;
}

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

nav a, nav a:visited {
    color: black;
    text-decoration: none;
    font-size: 1.2rem;
}

nav a:hover {
    text-decoration: underline;
    color: red;
}

main {
    line-height: 1.6;
    font-size: 1.1rem;
}

.headline {
    margin: 3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    border-top: 2px dashed black;
    border-bottom: 2px dashed black;
    padding: 2rem 0;
}

.headline-icon {
    width: 64px;
    height: 64px;
    object-fit: cover;
}

.headline h2 {
    font-size: 2.5rem;
    margin: 0;
}

.headline a, .headline a:visited {
    color: inherit;
    text-decoration: none;
}

.headline a:hover {
    color: red;
}

a {
    color: red;
    text-decoration: none;
}

a:visited {
    color: red;
}
