html,body{height: 100%; display: flex; align-items: center; justify-content: center; font-family: 'Open Sans', sans-serif; overflow: hidden;}body .content{display: flex; align-items: center; flex-direction: column;}body .content .content__image-logo{margin-bottom: 10px;}body .content .content__title{margin: 0px; font-size: 24px; line-height: 30px;}@media (max-width: 500px){body .content .content__title{font-size: 18px; line-height: 24px;}}body .content .content__text{font-size: 14px; font-weight: 300; margin-bottom: 20px;}body .content .content__text a{color: #0663c7; text-decoration: none;}body .content .content__progressing{height: 4px; width: 120px; border-radius: 2px; position: relative; background-color: #248EFF;}body .content .content__progressing .content__progressing-bar{width: 30px; height: 4px; position: absolute; background-color: rgba(255, 255, 255, 0.6); animation-name: loading; animation-duration: 1s; animation-iteration-count: infinite; animation-timing-function: linear;}@keyframes loading{from{left: -30px;}to{left: calc(100% + 30px)}}@-webkit-keyframes loading{from{left: -30px;}to{left: calc(100% + 30px)}}@-moz-keyframes loading{from{left: -30px;}to{left: calc(100% + 30px)}}