@font-face {
    font-display: swap;
    font-family: "Libre Baskerville";
    font-style: normal;
    font-weight: 400;
    src: url("./assets/fonts/libre-baskerville-v24-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
    --base00: #282828; /* Default Background */
    --base01: #3c3836; /* Lighter Background */
    --base02: #504945; /* Selection Background */
    --base03: #665c54; /**/
    --base04: #bdae93; /* Alternate text */
    --base05: #d5c4a1; /* Default text */
    --base06: #ebdbb2; /* Light Foreground */
    --base07: #fbf1c7; /* Light Background */
    --base08: #fb4934; /**/
    --base09: #fe8019; /**/
    --base0A: #fabd2f; /**/
    --base0B: #b8bb26; /**/
    --base0C: #8ec07c; /**/
    --base0D: #83a598; /**/
    --base0E: #d3869b; /**/
    --base0F: #d65d0e; /**/
}

* {
    margin: 0;
    padding: 0;
    color: var(--base05);
    font-family: "Libre Baskerville";
}

body {
    position: relative;
    background-color: var(--base00);
}

h2 {
    color: var(--base0D);
}

a {
    color: var(--base0E);
}

section {
    margin: 3rem 0;
}

.center {
    margin: 5rem 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.about {
    width: 35vw;
}

.banner {
    gap: 1rem;
    width: 30vw;
    display: flex;
    text-align: center;
    flex-direction: column;
}

.highlight {
    color: var(--base0A);
    font-family: monospace, monospace;
}

.date {
    font-size: 12px;
    margin-left: 8px;
    color: var(--base03);
}

.badge {
    font-size: 12px;
    margin-left: 8px;
    border-radius: 6px;
    padding: 2px 4px;
    color: var(--base01);
    background-color: var(--base0B);
}

.projekte {
    gap: 1rem;
    display: flex;
    flex-direction: column;
}

.projekt h3 a {
    color: var(--base09);
}

.projekt {
    padding: 1rem;
    border: 2px solid var(--base0C);
}

.contact {
    font-size: 1.25rem;
    margin-bottom: 10vh;
    text-align: center;
}

#bonfire {
    right: 1rem;
    bottom: 1rem;
    width: 256px;
    height: 256px;
    position: fixed;
}

@media only screen and (max-width: 1280px) {
    .about,
    .banner {
        width: 65vw;
    }
    #bonfire {
        width: 128px;
        height: 128px;
    }
}
@media only screen and (max-width: 768px) {
    .about,
    .banner {
        width: 85vw;
    }
    #bonfire {
        display: none;
    }
}
