html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Verdana', sans-serif;
    color: #255D97;
    height: auto;
    min-height: 100%;
    font-size: 14px;
}

body {
    background: #FFF;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(242, 249, 255, 1) 34%, rgba(108, 192, 252, 1) 100%);
    height: auto;
    min-height: 100%;

    @media (max-width: 768px) {
        margin-left: 15px;
        margin-right: 15px;
    }
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

p {
    color: #4E7CA2;
}

h1 {
    color: #255D97;
}

h2 {
    color: #255D97;
}

.row {
    display: flex;
    max-width: 780px;
    width: 100%;
    margin-bottom: 30px;

    @media (max-width: 768px) {
        flex-direction: column;
    }
}

.row .col-6{
    flex: 0 0 50%;
}

.row .col-6{
    @media (max-width: 768px) {
        flex: none;
        width: 100%;
        flex-direction: row;
    }
}

.button {
    background-color: #0387B8;
    color: #fff;
    text-decoration: none;
    display: block;
    width: 100%;
    padding: 5px 0;
    text-align: center;
}

h1,
h2 {
    font-weight: normal;
}