html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: rgb(137, 164, 150);
    color: #fff;
}

.svg .fallback {
    display: none;
}

.svg .modern {
    display: block;
}

.no-svg .fallback {
    display: block;
}

.no-svg .modern {
    display: none;
}

.main {
    display: table;
    height: 100%;
    width: 100%;
}

.logo-wrapper {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.logo-wrapper-inner {
    display: inline-block;
}

.triangle, .title {
    width: 500px;
    display: block;
}

.triangle {
    height: 224px; /* IE11 seems to need explicit heights */
}

.title {
    height: 28px;
    margin-top: 26px;
    opacity: 0;
}

.smil .title {
    -webkit-transition: 1s ease opacity;
    -moz-transition: 1s ease opacity;
    -ms-transition: 1s ease opacity;
    transition: 1s ease opacity;
}

.no-smil .title {
    opacity: 1;
}

.visible {
    opacity: 1;
}

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    margin: 5px;
    font-size: 12px;
    opacity: 0.7;
}

.smil .svg-triangle {
    -moz-transition: 3s ease stroke-dashoffset;
    -ms-transition: 3s ease stroke-dashoffset;
    transition: 3s ease stroke-dashoffset;
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
}

.smil .svg-streets {
    -moz-transition: 5s ease stroke-dashoffset;
    -ms-transition: 5s ease stroke-dashoffset;
    transition: 5s ease stroke-dashoffset;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.smil .svg-path-visible {
    stroke-dashoffset: 0;
}

.smil .svg-node {
    -webkit-transition: 1s ease opacity;
    -moz-transition: 1s ease opacity;
    -ms-transition: 1s ease opacity;
    transition: 1s ease opacity;
    opacity: 0;
}

.smil .svg-node-visible {
    opacity: 1;
}

@media screen and (max-width: 600px) {
    .triangle {
        width: 300px;
        height: 134px;
    }

    .title {
        margin-top: 9px;
        width: 300px;
        height: 17px;
    }
}