* {
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    margin: 0;
    font-family: "Encode Sans", Arial, Helvetica, sans-serif;
}

h1 {
    font-weight: 300;
}

div {
    width: 100%;
}

ul {
    background: #fff;
    width: 540px;
    margin: auto;
    margin-top: 0px;
    list-style: none;
    padding: 0px 0px 0px 0px;
    -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.37);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.37);
}

ul li {
    width: 180px;
    height: 180px;
    line-height: 176px;
    text-align: center;
    float: left;
    background-repeat: no-repeat;
    background-position: center;
}

ul li img {
    vertical-align: middle;
}

li {
    background-color: rgb(57, 107, 245);
}

svg {
    min-height: 100%;
}

polygon:hover {
    opacity: 1;
}

body {
    background-color: #322B2B;
}

.bg-image {
    /* The image used */
    background-image: url("images/background-start.png");

    /* Add the blur effect */
    filter: blur(2px);
    -webkit-filter: blur(2px);

    /* Full height */
    height: 100%;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Position text in the middle of the page/image */
.bg-text {
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/opacity/see-through */
    color: white;
    font-weight: 600;
    border: 3px solid #f1f1f1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
    padding: 20px;
    text-align: center;
}