@font-face {
    font-family: 'ComputerModern';
    src: url('fonts/cmunrm.ttf') format('opentype');
}
@font-face {
    font-family: 'ComputerModern';
    src: url('fonts/cmunrb.ttf') format('opentype');
    font-weight: bold;
}

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

body {
    font-family: 'ComputerModern', Georgia, serif;
    margin: 0;
    padding: 2rem 1rem 3rem;
    background: #fafaf8;
    color: #1a1a1a;
}

a {
    color: #0D6937;
    font-weight: bold;
    text-decoration: none;
}
a:hover {
    color: #ff6fff;
}

.content-container {
    text-align: justify;
    max-width: 650px;
    margin: 0 auto;
    line-height: 160%;
}

.content-container a {
    text-decoration: none;
}

.purple-background {
    background-color: #f3e8ff;
    padding: 0 2px;
}

.purple-background:hover {
    color: #0D6937;
}

.title {
    text-align: center;
    font-size: 4.5rem;
    margin: 0 auto 2rem;
    font-weight: normal;
    color: #0D6937;
    max-width: 650px;
    display: block;
}

.subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin: -1.5rem auto 2.5rem;
    max-width: 650px;
    display: block;
    letter-spacing: 0.03em;
}

.bold {
    font-weight: bold;
}

.footer {
    display: flex;
    justify-content: space-between;
    max-width: 650px;
    margin: 2.5rem auto 0;
}

.footer div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.right-align {
    text-align: right;
}

::selection {
    background-color: #ff6fff;
}

@media (max-width: 768px) {
    .title {
        font-size: 3rem;
    }
    .content-container {
        padding: 0 0.5rem;
    }
    .footer {
        padding: 0 0.5rem;
    }
}
