@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Roboto&display=swap');
*{

  font-family: 'Poppins', sans-serif;
}
.outer {
  display: table;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.middle {
  display: table-cell;
  vertical-align: middle;
  background-color: #2d388a;
}

.inner {
  margin-left: auto;
  margin-right: auto;
      width: 500px;
    text-align: center;
    color: white;
/* Whatever width you want */
}
.inner h2 {
     font-size: 23px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 30px;
    margin-top: 0;
}
.inner h1 {
   font-size: 23px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 30px;
    margin-top: 0;
}
.inner p {
    font-size: 15px;
    margin-top: 50px;
}
.inner p a {
    color: #fff;
}


@media only screen and (max-width: 767px) {

.inner {

      width: 94%;
    display: table;

}

img {
    width: 100%;
}

.inner h2 {
     font-size: 16px;
}
.inner h1 {
   font-size: 16px;
    margin-bottom: 0px;

}


.inner p {
    font-size: 12px;

}



 
}


