#speech {
    position: absolute;
    top: 0;
    right: 1em;
    justify-content: center;
    align-items: center;
    color: black;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-size: smaller;
    line-height: 1.5;
    font-weight: 300;
}

#speechBubble {
    position: relative;
    max-width: 38vh;
    background-color: #fff;
    padding: 1.125em 1.5em;
    font-size: 1.5vh;
    border-radius: 1rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, .3), 0 0.0625rem 0.125rem rgba(0, 0, 0, .2);
}

#speechBubble::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 100%;
    left: 1rem;
    border: 0.75rem solid transparent;
    border-bottom: none;
    border-top-color: #fff;
    filter: drop-shadow(0 0.0625rem 0.0625rem rgba(0, 0, 0, .1));
}

.overlap {
    position: relative;
}

.overlapBg {
    position: absolute;
    left: 0;
    filter: blur(4px);
    z-index: -1;
}

html, body {
    height: 100%;
    width: 100%;
}

html {
    background-color: #111;
    background-image: url(../img/bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: auto;
}

body {
    overflow: hidden;
    margin: 0;
    padding: 0;
    color: #eee;
    font-family: "Franklin Gothic";
    font-weight: 900;
    font-style: normal;
}

#main {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#links {
    display: inline-block;
    width: 100%;
    text-align: center;
}

#links div {
    display: inline-block;
}

#links img {
    max-width: 8vw;
    padding-right: 4vw;
    padding-left: 4vw;
    vertical-align: middle;
}

#main h1 {
    text-shadow: 0 0 0.5vh #ddd;
    text-align: center;
    margin: 0;
}

@font-face {
    font-family: "Franklin Gothic";
    src: url(../style/font.woff2) format("woff2"),
        url(../style/font.woff) format("woff"),
        url(../style/font.woff2) format("ttf");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}