@font-face {
    font-family: 'Geist';
    src: url('./assets/geist/Geist-Regular.otf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'Geist Italic';
    src: url('./assets/geist/Geist-RegularItalic.otf') format('opentype');
    font-display: swap;
}

*::selection {
    background-color: oklch(0.95 0.01 89);
}

body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 2lh;
    font-size: 0.875rem;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.description {
    padding: 0;
    margin: 0;
    line-height: 1.5;
    max-width: 30ch;
}

.intro {
    display: flex;
    flex-direction: column;
}

a {
    color: black
}

.email,
.book .title {
    border-bottom: 1.5px dotted black;
    text-decoration: none;
    position: relative;
    width: fit-content;
    transition: all 0.3s ease;
}

.email:hover,
.book .title:hover {
    background-color: oklch(0.95 0.01 89);
}

.email:visited {
    color: black;
}

.book {
    display: flex;
    flex-direction: column;
    gap: 0.225rem;
    padding-left: 1rem;
}

.book .title a {
    text-decoration: none;
}

.book .title a:visited {
    color: inherit;
}

.book .author {
    font-size: 0.75rem;
    font-family: 'Geist Italic';
    text-decoration: none;
}

.location {
    position: absolute;
    bottom: 0;
    padding-bottom: 1rem;
}