* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.submission {
    overflow: hidden;
    width: 100%;
    padding: 60px 0;
}


.thankyou-box {
    text-align: center;
    padding: 40px;
}

.thankyou-box h1 {
    font-family: 'LeagueGothic-Regular';
    color: #000000;
    font-size: 50px;
    line-height: 40px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.thankyou-box p,
.thankyou-box .para {
    font-family: 'Lato-Regular';
    font-size: 18px;
    line-height: 32px;
    color: #000000;
}

.thankyou-box a {
    font-family: 'Lato-Regular';
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #251e44;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
}

/* responsive */

@media only screen and (max-width:991px) {

    .submission {
        padding: 40px 0;
    }

    .thankyou-box h1 {
        font-size: 40px;
        line-height: 30px;
    }

    .thankyou-box p,
    .thankyou-box .para {
        font-size: 16px;
        line-height: 30px;
    }
}

@media only screen and (max-width:767px) {

    .submission {
        padding: 30px 0;
    }

    .thankyou-box h1 {
        font-size: 30px;
        line-height: 30px;
    }

    .thankyou-box {
        padding: 20px;
    }

    .thankyou-box p,
    .thankyou-box .para {
        font-size: 14px;
        line-height: 24px;
    }

    .thankyou-box .para {
        margin-top: 5px;
    }

    .thankyou-box a {
        margin-top: 15px;
        padding: 8px 15px;
        font-size: 14px;
        line-height: 22px;
    }
}