@font-face {
    font-family: "ankecallig-fg";
    src: url("../data/ankecallig-fg.ttf") format("woff2");
  }

body {
    margin: 0;
    padding: 0;
}

h1 {
    font-family: 'ankecallig-fg', cursive;
    line-height: 1em;
    font-size: 45px;
    margin: 30px 0;
}

h2 {
    font-family: 'Helvetica Neue';
    font-weight: 600;
    font-size: 22px;
    margin: 0;
}

p {
    font-family: 'Helvetica Neue';
    font-weight: 400;
    font-size: 18px;
    margin: 15px 0 10px 0;
}

a.fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.fullscreen {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

.bgr-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.bgr-img > img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
}

.logo {
    width: 300px;
    margin: 0 auto;
}

.floating-logo {
    width: 280px;
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 1;
}

.logo > img, .floating-logo > img {
    display: block;
    width: 100%;
}

.content-area {
    position: fixed;
    background: rgba(245,231,214,0.85);
    z-index: 99;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    text-align: center;
    z-index: 1;
}

ul.social {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}

ul.social li {
    position: relative;
    list-style: none;
    margin: 0 5px;
    position: relative;
    width: 20px;
}

ul.social li > img {
    display: block;
    width: 100%;
}

@media (max-width: 1024px) {
    .content-area {
        position: static;
        transform: translate(0,0)
    }

    .floating-logo {
        position: static;
        margin: 30px auto;
        transform: translate(0,0);
    }
}