html,
body {
  margin: 0;
  height: 100%;

}
.bodytext {
  font-family: "Roboto Condensed", sans-serif;
  overflow: hidden;
  color: rgb(255, 255, 255);
  text-shadow: 2px 2px 2px black;


}

.vertical-container {
  display: table;
  width: 100%;
  height: 100%;
}
.vertical-body {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}


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

.center{
    text-align: center;
    animation: blur 2s;
}


@media (max-width: 768px) {
  .title {
    font-size: 40px;
  }
  .devider{
    width: 75%;
}
.bodytext_header {
  font-family: "Roboto Condensed", sans-serif;
  overflow: hidden;
  color: rgb(0, 0, 0);
  text-shadow: rgba(255, 255, 255, 1) 0.5px 1px 2px;
  font-size: 3vh;
  font-weight: 700;
  font-family: "Bembo", serif;

}
.background {
  background: url(./background.jpg);

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
  animation: popup 2s;
}
}

@media (min-width: 1200px) {
  .background {
    background: url(./background.jpg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      
    animation: popup 2s;
  }
  .title {
    font-size: 60px;
  }
  .devider{
    width: 100%;
}
.logo{  
  width: 75%;
  margin: 5%
}
.bodytext_header {
  font-family: "Roboto Condensed", sans-serif;
  overflow: hidden;
  color: rgb(0, 0, 0);
  text-shadow: rgba(255, 255, 255, 0.596) 0.5px 1px 2px;
  font-family: "Bembo", serif;

}
}

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