.thanks-page * {
    box-sizing: border-box;
}
.thanks-page {
    background: #ffffff;
    background: linear-gradient(to bottom, #ffffff 0%, #e1e8ed 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e1e8ed',GradientType=0 );
    min-height: 100vh;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.thanks-wrapper-1 {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}
.thanks-wrapper-2 {
    padding: 30px;
    text-align: center;
}
.thanks-wrapper-2 h1 {
    font-size: 2em;
    letter-spacing: 3px;
    color: #57476f;
    margin: 0;
    margin-bottom: 20px;
}
.thanks-wrapper-2 p {
    margin: 0;
    font-size: 1.3em;
    color: #aaa;
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing: 1px;
}
.thanks-go-home {
    background: #57476f;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 12px;
    padding: 14px 42px;
    margin-top: 42px;
    margin-right: 12px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    visibility: visible;
    animation-delay: 2.3s;
    animation-name: fadeInUp;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
}
.thanks-go-home:hover {
    background: transparent;
    border-color: #57476f;
}
a:hover .thanks-go-home {
    color: #57476f;
}
.thanks-go-home a {
    text-decoration: none;
    color: #fff;
}

.thanks-footer-like {
    margin-top: auto;
    background: #d7e6fe;
    padding: 6px;
    text-align: center;
}
.thanks-footer-like p {
    margin: 0;
    padding: 4px;
    color: #ffc107;
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing: 1px;
}
.thanks-footer-like p a {
    text-decoration: none;
    color: #ffc107;
    font-weight: 600;
}

@media (min-width: 360px) {
    .thanks-wrapper-2 h1 {
        font-size: 3.5em;
    }
    .thanks-go-home {
        margin-bottom: 20px;
    }
}

@media (min-width: 600px) {
    .thanks-page {
        max-width: 1000px;
        margin: 0 auto;
    }
    .thanks-wrapper-1 {
        height: initial;
        max-width: 620px;
        margin: 0 auto;
        margin-top: 50px;
        box-shadow: 4px 8px 40px 8px lightgray;
    }
}
