html {
    height: 100%;
}

body {
    margin: 0px;
    color: white;
    height: 100%;
    background-color: skyblue;
}

h1 {
    font-size: 48px;
    text-shadow: 2px 2px 5px black;
}

p, li {
    font-weight: bold;
    font-size: 18px;
}

a {
    color: #99ffff;
    text-decoration: none;
}

.backgroundcontainer {
    position: fixed;
    left: 0px;
    right: 0px;
    width: 100vw;
    height: 100vh;
    z-index: -1;

    background-image: url("background.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    filter: blur(5px);
}

.topbar {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 64px;
    background-color: rgba(0, 0, 0, 0.25);
}

.topbarcell {
    display: flex;
    width: 50%;
    align-items: center;
}

.bignamecontainer {
    text-align: center;
    height: 175px;
}

.infobox {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    text-shadow: 2px 2px 5px black;
}

.infobox::before { content: ""; }
.infobox::after { content: ""; }

@media only screen and (max-width: 660px) {
    h1 {
        font-size: 32px;
    }

    .topbar {
        flex-direction: column;
        height: auto;
    }

    .topbarcell {
        width: 100%;
    }

    .infobox {
        flex-direction: column;
        align-items: center;
    }
}

