@font-face {
    font-family: 'Bebas Neue';
    src: url(/fonts/BebasNeue.woff2) format('woff2'),
        url(/fonts/BebasNeue.woff) format('woff'),
        url(/fonts/BebasNeue.ttf) format('truetype'),
        url(/fonts/BebasNeue.otf) format('opentype');
}
@font-face {
    font-family: 'Billyforges';
    src: url(/fonts/Billyforges.woff2) format('woff2'),
        url(/fonts/Billyforges.woff) format('woff'),
        url(/fonts/Billyforges.ttf) format('truetype'),
        url(/fonts/Billyforges.otf) format('opentype');
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    background: #fff;
}
body:after {
    content: "";
    position: fixed;
    top: 0;
    height: 100vh;
    left: 0;
    right: 0;
    z-index: -1;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-image: url(/images/bg.webp);
    opacity: 0.5;
}
body {
    margin: 30px 0;
}
.logo {
    max-width: 100%;
    max-height: 150px;
}
.hero {
    padding: 0;
}
.hero img {
    width: 100%;
    border-top: 10px solid #111;
    border-bottom: 10px solid #111;
}
@media (min-width: 576px) {
    .hero img {
        border: 10px solid #111;
    }
}
.link {
    cursor: pointer;
    user-select: none;
    display: inline-block;
    padding: 25px 50px;
    width: 100%;
    max-width: 600px;
    font: 32px 'Bebas Neue';
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-shadow: none;
    text-align: center;
    color: #900;
    background-color: #fff;
    border-radius: 200px;
    border: 1px solid #900;
    box-shadow: 0 0 11px -2px #900;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 150ms, color 150ms;
}
.link:hover {
    background-color: #900;
    color: #fff;
}
@media (min-width: 576px) {
    .link {
        font-size: 40px;
    }
}
.header {
    text-align: center;
    align-items: center;
}
.venue {
    font: 40px 'Bebas Neue';
    font-weight: 500;
    line-height: 100%;
    margin: 20px 0;
}
@media (min-width: 768px) {
    .venue {
        font-size: 44px;
    }
}
.venue .at {
    font-size: 28px;
    margin-right: 5px;
    color: #222;
}
.date {
    font: 28px 'Bebas Neue';
    font-weight: 500;
}
.info {
    margin-bottom: 30px;
}
.cta {
    margin: 50px 10px;
    text-align: center;
}
.cta.bottom {
    margin-bottom: 100px;
}
.cta h2 {
    font: 28px 'Bebas Neue';
    font-weight: 500;
}
h1 {
    text-align: center;
    font: 50px 'Billyforges';
    font-weight: 500;
    color: #000;
    font-weight: 500;
    margin: 0 0 20px 0;
}
@media (min-width: 768px) {
    h1 {
        font-size: 70px;
    }
}
p {
    font: 18px serif;
    line-height: 150%;
    margin: 0 10px 20px 0;
}
p:last-of-type {
    margin-bottom: 0;
}
@media (min-width: 768px) {
    p {
        font-size: 24px;
    }
}
.small {
    font-size: 22px;
    padding-left: 1px;
}
.guests {
    margin-top: 20px;
}
.guests .details {
    text-align: right;
    font: 24px 'Bebas Neue';
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.guests .details .name {
    font-size: 40px;
}
.guests img {
    max-height: 150px;
    border: 6px solid #000;
}
.bio {
    margin-top: 50px;
}
.player {
    text-align: center;
}
.player iframe {
    margin-top: 50px;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 1.78; /* 16:9 */
    border-radius: 15px;
}