@font-face{
    font-family: "Gill";
    src: url("/assets/fonts/gill.eot");
    src: url("/assets/fonts/gill.eot?#iefix")format("embedded-opentype"),
        url("/assets/fonts/gill.woff")format("woff"),
        url("/assets/fonts/gill.woff2")format("woff2"),
        url("/assets/fonts/gill.ttf")format("truetype"),
        url("/assets/fonts/gill.svg#Gill")format("svg");
    font-weight:normal;
    font-style:normal;
    font-display:swap;
}

html, body {
    background: #000;
}

p, li {
    color: #fff;
}

.gill {
    font-family: "Gill", sans-serif;
}

.superlike-font {
    font-family: "Gill", sans-serif;
    color: #e80bc3;
    text-transform: uppercase;
}

.hero {
    background-image: image-set(
        url("/assets/img/hero-grey.webp") type("image/webp") 1x,
        url("/assets/img/hero-grey.jpg")  type("image/jpeg") 1x
    );
    background-image: -webkit-image-set(
        url("/assets/img/hero-grey.webp") type("image/webp") 1x,
        url("/assets/img/hero-grey.jpg")  type("image/jpeg") 1x
    );
    background-size: cover;
    background-position: center 25%;
    width: 100%;
}

.hero-container {
    width: 100%;
    backdrop-filter: blur(5px) brightness(30%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 80%;
    aspect-ratio: 1/1;
    max-width: 300px;
}

.hero-date {
    font-weight: 900;
}

ul > li {
    margin: 10px 0;
}

.navbar {
    width: 100%;
    height: 56px;
    background: #000000ff;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-container {
    display: grid;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 1600px;
    padding: 0px 20px;
    /* justify-content: space-between; */
}

.navbar-link {
    font-family: "Gill", sans-serif;
    color: #e80bc3;
    text-decoration: none;
    font-size: 1.1em;
    line-height: 1;
    margin-bottom: -.4em;
    padding: 0px 6px;
    text-transform: uppercase;
}