@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100..700&display=swap');

html {
    font-size: 20px;
    color: #62bc43;
    background-color: #151515;
}

.accordion {
    color: black;
}

a, a:visited {
    color: #227e03;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

html, .accordion > button {
    font-family: 'Josefin Sans', sans-serif;
}

body, section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}

body {
    margin-bottom: 5rem;
    gap: 2rem;
    line-height: 1.5rem;
}

section {
    max-width: 800px;
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
}

#cover {
    height: 800px;
    width: 100%;
    margin: 0;
    background-image: url("frandi-traubogen.webp");
    background-position: center;
    background-size: cover;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5rem;
}

#cover > div {
    color: white;
    font-size: 2rem;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(0.05rem);
    padding: 1rem 0.5rem 0.5rem;
    border-radius: 0.5rem;
    line-height: 1.1;
}

#countdown {
    font-size: 1.4rem !important;
}


th:first-of-type, td:first-of-type {
    text-align: end;
    padding-inline-end: 1rem;
    width: 5rem;
}

th:not(:first-of-type), td:not(:first-of-type){
    text-align: start;
}

h1 {
    padding-left: 0.5rem;
}

.accordion {
    width: 100%;
}

.accordion > div {
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.accordion > div:first-of-type {
    font-weight: 600;
    cursor: pointer;
    background-color: #3c6e2c;
    color: white;
    display: flex;
    align-items: center;
    height: 2rem;
}

.accordion > div:first-of-type.expanded {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.accordion > div:not(:first-of-type).expanded {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.accordion > div:first-of-type::before {
    content: '+';
    float: left;
    width: 1rem;
}

.accordion > div:first-of-type.expanded::before {
    content: '—';
}

.accordion > div:not(:first-of-type):not(.expanded) {
    display: none;
}

.accordion > div:not(:first-of-type) {
    background-color: #ffffff;
    border: 1px dashed;
    border-top: none;
}

.shelter {
    text-decoration: underline;
}

.price {
    font-weight: 700;
}