:root {
    --dark-text-color: #2c2c2c;
    --light-text-color: #696867;
    --ic-blue: #1484ee;
    --ic-dark-blue: #0d64b5;
    --ic-red: #d92632;
    --light-blue-bkg: #eaf4f9;
}

body {
    color: var(--dark-text-color);
    font-family: "Ubuntu", sans-serif;
    font-feature-settings: "tnum","tnum";
    -webkit-font-feature-settings: "tnum","tnum";
    font-variant: tabular-nums;
    line-height: 1.3;
    margin: 0;
}

h2 {
    font-size: 40px;
}

.page-wrapper {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin: 30px 0;
}

a {
    color: var(--ic-blue);
    text-decoration: none;
}
a {
    color: var(--ic-dark-blue);
}

.logo-box {
    align-items: center;
    display: flex;
    font-size: 26px;
    font-weight: bold;
}
.logo-box > img {
    height: 45px;
    margin-right: 10px;
}
.logo-box > p {
    color: var(--dark-text-color);
    margin: 0;
}

.button-base {
    border-style: solid;
    border-width: 2px;
    cursor: pointer;
    font-weight: bold;
}
.button-base.md {
    border-radius: 25px;
    font-size: 16px;
    height: 50px;
    padding: 0 30px;
}
.button-base.lg {
    border-radius: 35px;
    font-size: 18px;
    height: 70px;
    padding: 0 35px;
}

@media only screen and (max-width: 1000px) {
    h2 {
        font-size: 32px;
    }
}

@media only screen and (max-width: 700px) {
    h2 {
        font-size: 26px;
    }

    .button-base.lg {
        border-radius: 25px;
        font-size: 16px;
        height: 50px;
        padding: 0 30px;
    }
}

@media only screen and (max-width: 520px) {
    h2 {
        font-size: 20px;
    }
}
