html,
body {
    margin: 0;
    height: 100%;
    background-color: #ffff
}

body {
    font-family: "Roboto Condensed", sans-serif;
    overflow: hidden;
}

.vertical-container {
    display: table;
    width: 100%;
    height: 100%;
}

.vertical-body {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.background {
    background:url(banner.jpg);
    animation: popup 2s;
}

.container {
    padding: 0 10px;
    margin: 0 auto;
    max-width: 960px;
    text-align: center;
    animation: blur 2s;
}

.title {
    font-size: 40px;
    margin-bottom: 0;
    animation: popup 2s;
}

@media (min-width: 768px) {
    .title {
        font-size: 50px;
    }
}

@media (min-width: 1200px) {
    .title {
        font-size: 70px;
    }
}

@keyframes blur {
    0% {
        filter: blur(12px);
    }

    100% {
        filter: blur(0px);
    }
}

@keyframes popup {
    0% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}
