@import url("fonts.css");

html {
    font-size: 16px;
    font-family: sans-serif;
    background: black;
    color: #f6f3e2;
}

body {
    margin: 0;
}

.container {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 2rem;
}

.above-the-fold {
    min-height: 100vh;
}

.section {
    margin: 2rem 0;
}

.image {
    display: block;
    width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: red;
}

h1, h2, h3 {
    font-family: Bahiana, sans-serif;
    font-weight: normal;
    text-transform: uppercase;
}

h1 {
    font-size: 3rem;
    margin: 2rem 0 1rem 0;
}

h2 {
    font-size: 2.5rem;
    margin: 2rem 0 1rem 0;
}

.text-large {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

.footer {
    text-align: center;
}

.fineprint {
    font-size: .7rem;
    padding: 1rem;
}

.fineprint,
.fineprint a {
    color: #777;
}

/* ====
   HERO
   ==== */

.logo-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.logo {
    border-radius: 400px;
    background: black;
    box-sizing: border-box;
    max-width: 50%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


/* ======
   SOCIAL
   ====== */

.social {
    text-align: center;
}

.social a {
    display: inline-block;
    font-size: 2rem;
    margin: 0 .5rem;
}

/* ======
   EVENTS
   ====== */


.event {
    padding: 1rem 0;
    font-family: "Bahiana", sans-serif;
}

.event__head {
    font-size: 1.5rem;
    margin-bottom: .25rem;
}

.event.prev {
    opacity: .5;

    .date {
        text-decoration: line-through;
    }
}

.event__title {
    font-size: 2.5rem;
    font-weight: normal;
    margin: 0 0 .25rem 0;
    text-transform: uppercase;
}

.event__header {
    font-size: 1.5rem;
    text-transform: uppercase;
}

.event__date {
    font-style: normal;
    display: inline;
}

.event__location {
    font-style: normal;
    display: inline;
}

.event + .event {
    border-top: 2px dashed rgb(255 255 255 / .3);
}