html, body {
   height: 100%;
}
body {
   position: relative;
   padding: 0;
   margin: 0px;
   background-color: rgba(91,193,183,1);
}
#wrapper {
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
   z-index: 2;
   width: 100%;
   min-height: 100%;
   height: 100%;
   user-select: none;
}
#wrapper .content {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   padding: 30px;
   width: 100%;
}
#wrapper .content img {
   display: block;
   width: 100%;
   max-width: 400px;
   height: auto;
}
#wrapper .content p {
   font-family: Arial, Helvetica, sans-serif;
   font-weight: 600;
   color: #fff;
   font-size: 20px;
   margin: 22px 0 0 0;
}
