:root {
    --big-font-size: 2.5rem;
    --body-font-size: 1.25rem;
    transition: font-size 1s;
}

@font-face {
    font-family: helveticaneue;
    src: url(/static/helveticaneue-bold.woff2);
}

/* Reset some default styles for consistency across browsers */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: helveticaneue;
    color: #000000; 
    background-color: #ff8fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    letter-spacing: 0;
    background: url('/static/texture.png');
}

.background-container {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    justify-content: center;
    display: flex;
}

.background-element {
    width: 100%;
    max-width: 1000px;
}

.site-header {
    text-align: center;
    padding-top: 2rem;
}

.subtitle {
    font-size: var(--body-font-size);
    color: #000000;
    letter-spacing: 2px;
    text-align: center;
    transition: font-size 0.25s;
}

.logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.event-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    z-index: 1;
}

.date-location {
    font-size: var(--big-font-size);
    color: #000000;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-align:center;
    transition: font-size 0.25s;
}

.location-description {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-description {
    font-size: var(--body-font-size);
    color: #000000;
    text-align: center;
    transition: font-size 0.25s;
    margin-bottom: 1rem;
    line-height: 1.2rem;
}

.contribution-text {
    font-size: var(--body-font-size);
    color: #000000;
    text-align: center;
    margin-bottom: 2rem;
    transition: font-size 0.25s;
    line-height: 1.2rem;
}

.links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #000000;
    text-decoration: none;
    border: 1px solid #000000;
    margin: 0.25rem 1rem;
}

.btn {
  width: 12rem;
}

.site-footer {
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    margin-bottom: 2rem;
}

.faq {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    text-align: center;
}

.faq > h2 {
    font-size: var(--big-font-size);
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.15);
    padding-top: 1rem;
}

.faq-item > h3 {
    font-size: var(--body-font-size);
    color: #000000;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-item > p {
    font-size: var(--body-font-size);
    color: #000000;
    line-height: 1.4rem;
    margin: 0;
}

@media (max-width: 800px) {
    :root {
        --big-font-size: 2rem;
        --body-font-size: 1.15rem;
        transition: font-size 0.25s;
    }
    .event-description, .contribution-text {
        line-height: 1rem;
    }
    .faq > h2 {
        font-size: 2rem;
    }
    .faq-item > h3,
    .faq-item > p {
        font-size: 1.15rem;
    }
}

@media (max-width: 500px) {
    :root {
        --big-font-size: 1.5rem;
        --body-font-size: 1rem;
    }
    .event-description, .contribution-text {
        line-height: 1rem;
    }
    .faq > h2 {
        font-size: 1.5rem;
    }
    .faq-item > h3,
    .faq-item > p {
        font-size: 1rem;
    }
}