:root {
    --background: #9cb0db;
    --foreground: #000;
    --primary: #283583;
    --primary-foreground: #fff;
}

html, body {
    margin: 0;
    padding: 0;
    background: var(--background);
    font-family: "Bahnscrift", "Open Sans", sans-serif;
    font-weight: 300;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
}

* {
    box-sizing: content-box;
}

img {
    width: 100%;
}

.content {
    max-width: 600px;
    width: 100%;
    text-align: center;
    margin: 30px;
}

h1 {
    font-size: 42px;
    color: var(--foreground);
    margin: 0;
    font-weight: 400;
}

p {
    color: var(--foreground);
    font-size: 18px;
    padding: 0;
    margin: 32px 0;
}

a {
    text-decoration: none;
    color: var(--primary);
    background: #f3f3f370;
    font-weight: bold;
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    font-size: 36px;
    margin: 0 10px;
    transition: transform .1s ease-in-out;
    font-weight: 100;
    border: 2px solid var(--primary);
}

    a.larger {
        font-size: 40px;
    }

    a:hover {
        transform: scale(1.1);
    }

ul {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    align-content: center;
    align-items: center;
}

i {
    font-style: normal;
}

li {
    list-style: none;
}

a[title] {
    position: relative;
}

    a[title]:hover:before {
        content: "";
        position: absolute;
        bottom: -12px;
        left: 50%;
        translate: -50% 0;
        border: 10px solid transparent;
        border-bottom-color: var(--primary);
        z-index: 1;
    }

    a[title]:hover:after {
        content: attr(title);
        position: absolute;
        text-wrap: nowrap;
        font-size: 16px;
        bottom: -42px;
        left: 50%;
        translate: -50% 0;
        background-color: var(--primary);
        color: var(--primary-foreground);
        padding: 6px 12px;
        border-radius: 5px;
    }

@font-face {
    font-family: "Bahnscrift";
    font-display: block;
    font-weight: 300;
    src: url("bahnscrift.woff") format("woff"), url("bahnscrift.ttf") format("truetype"); 
}