html,
body {
  margin: 0;
  height: 100%;
}
body {
  font-family: "Roboto Condensed", sans-serif;
  overflow: hidden;
}
p{
	font-size: 25px;
}
.vertical-container {
  display: table;
  width: 100%;
  height: 100%;
}
.vertical-body {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.background {  
	background: url("bg-commig.jpg") center center no-repeat;
  background-size: cover;
  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;
	    margin-top: 20px;
}

.title2{
	font-size: 45px;
	margin-bottom: 0;
  	animation: popup 2s;
	margin-top: 20px;
}
.disc{
	margin-top: 10px;
}

@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;
  }
}