*, *:before, *:after {
    box-sizing: border-box;
}

body {
    /* background-color: coral; */
    /* padding: 0 16px; */
    /* background-image: url('../images/header.png'); */
    /* background-attachment: fixed; */
    /* background-size: cover; */
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

#center-wrapper {
    background: rgba(21,47,107,1);
    background: -moz-radial-gradient(center, ellipse cover, rgba(21,47,107,1) 0%, rgba(0,1,45,1) 100%);
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(21,47,107,1)), color-stop(100%, rgba(0,1,45,1)));
    background: -webkit-radial-gradient(center, ellipse cover, rgba(21,47,107,1) 0%, rgba(0,1,45,1) 100%);
    background: -o-radial-gradient(center, ellipse cover, rgba(21,47,107,1) 0%, rgba(0,1,45,1) 100%);
    background: -ms-radial-gradient(center, ellipse cover, rgba(21,47,107,1) 0%, rgba(0,1,45,1) 100%);
    background: radial-gradient(ellipse at center, rgba(21,47,107,1) 0%, rgba(0,1,45,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#152f6b', endColorstr='#00012d', GradientType=1 );
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
    text-align: center;
    padding: 16px;
    line-height: 1.5em;
    flex-direction: column;
}

#cta-btn {
    background-color: #e98e33;
    padding: 8px 16px;
    margin-top: 16px;
    border-radius: 4px;
    text-decoration: none;
    color: white;
    font-size: 1.3em;
}