html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
    padding: 0;
    margin: 0;
}

html, body {
    height: 100%;
    width: 100%;
}
body {
    background-color: #084E7D;
    color: white;
    text-rendering: optimizeLegibility;
    font-weight: 100;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Poppins, Helvetica, Arial, sans-serif;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#21536d+0,084e7d+100 */
    background: #21536d; /* Old browsers */
    background: -moz-radial-gradient(center, ellipse cover,  #21536d 0%, #084e7d 100%); /* FF3.6-15 */
    background: -webkit-radial-gradient(center, ellipse cover,  #21536d 0%,#084e7d 100%); /* Chrome10-25,Safari5.1-6 */
    background: radial-gradient(ellipse at center,  #21536d 0%,#084e7d 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#21536d', endColorstr='#084e7d',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

}

.incoming-landing {
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 500px;
    height: 562px;
    max-width: 100%;
}

.profile-avatar {
    border-radius: 3px;
    border: 1px solid gray;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
    margin-top: 80px;
}

h1 {
    width: 80%;
    margin: 21px auto;
    font-weight: normal;
    font-size: 19px;
}

a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.incoming-cta {
    color: #FFF;
    display: inline-block;
    border: 1px solid #fff;
    padding: 6px 18px 3px;
    border-radius: 3px;
    text-transform: uppercase;
    margin: 20px;
    opacity: 0.8;
}

.incoming-cta .squareshop-logo {
    background: rgba(0, 0, 0, 0) url(//squareshop.io/img/logo.png) no-repeat 0 0;
    background-size: 100% auto;
    text-indent: 9999px;
    white-space: nowrap;
    display: inline-block;
    width: 130px;
    vertical-align: middle;
    height: 36px;
    overflow: hidden;
}

.incoming-cta:hover {
    opacity: 1;
}