/* jost-regular - latin */
@font-face {
    font-display: auto;
    font-family: 'Jost';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/jost-v14-latin-regular.woff2') format('woff2'),
        url('./fonts/jost-v14-latin-regular.ttf') format('truetype');
}

/* jost-600 - latin */
@font-face {
    font-display: auto;
    font-family: 'Jost';
    font-style: normal;
    font-weight: 600;
    src: url('./fonts/jost-v14-latin-600.woff2') format('woff2'),
        url('./fonts/jost-v14-latin-600.ttf') format('truetype');
}

:root {
    --background: #F5EBE0;
    --foreground: #AC9883;
}

html {
    margin: 0;
    padding: 0;
    background-color: var(--background);
}

body {
    margin: 0;
    padding: 0;
    font-family: "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.4;
    color: var(--foreground);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

a,
a:hover,
a:visited {
    color: var(--foreground);
}

#container {
    background-color: var(--background);
}

#sketch-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#header-container {
    position: relative;
    width: 100%;
    height: 80px;
}

#header {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

#header h2 {
    margin: 0;
}

#sketch {
    position: relative;
    width: 100%;
    height: 375px;
}

#logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 168px;
    height: 168px;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

#anim-circle {
    transform-origin: center;
    transform: rotate(-90deg);
}

#content {
    width: 100%;
    padding: 4px 24px 0;
    box-sizing: border-box;
}

.section {
    margin: 0 auto 2.75em;
    max-width: 800px;
}

.centered {
    text-align: center;
}

.last {
    margin-bottom: 4em;
}

.section.centered h3 {
    margin-top: 0;
}

#ausfallgebuehr {
    border: 1px solid var(--foreground);
    padding: 16px;
    margin-top: 1.2em;
    font-size: 0.9em;
}

#urlaub {
    border: 1px solid var(--foreground);
    border-radius: 8px;
    display: inline-block;
    padding: 0 48px 32px;
}

#urlaubszeiten {
    display: inline-grid;
    grid-template-columns: auto auto;
    row-gap: 16px;
    column-gap: 12px;
    align-items: start;
}

.member {
    display: flex;
    justify-content: right;
    padding: 4px 0px;
}

.zeiten {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tag {
    background-color: #AC988330;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    white-space: nowrap;
}

.button {
    display: block;
    width: 260px;
    height: 44px;
    margin: 8px auto 1.2em;
    background-color: var(--foreground);
    border-radius: 24px;
    text-decoration: none;
    color: var(--background);
    line-height: 44px;
    transition: all .15s ease-in-out;
}

.button:hover {
    transform: scale(1.02);
}

a.button:hover,
a.button:visited {
    color: var(--background)
}

.back-button {
    display: inline-block;
    margin: 1em 0;
}

#footer {
    width: 100%;
    height: 112px;
    text-align: center;
    padding-top: 16px;
    box-sizing: border-box;
    color: var(--foreground);
    border-top: 1px solid var(--foreground);
    font-size: 0.9em;
}

#copyright {
    margin: 0.3em 0;
}

#footer a {
    color: var(--foreground);
}

@media (max-height: 600px) {
    #sketch {
        height: 335px;
    }
}