html,
body {
    margin: 0;
    height: 100%;
}

body {
    font-family: "Roboto Condensed", sans-serif;
    overflow: hidden;
    color:white;
}

.vertical-container {
    display: table;
    width: 100%;
    height: 100%;
}

.vertical-body {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.background {
    background: url(../img/cs/bg.jpg) center center no-repeat;
    background-size: cover;
    animation: popup 2s;
}
.background::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(20, 0, 40, 0.98),
      rgba(80, 0, 130, 0.55),
      rgba(0, 0, 0, 0.65)
    );
    z-index: 1;
  }
  
  .background > * {
    position: relative;
    z-index: 2;
  }
.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;
    }
}