* {
    box-sizing: border-box;
    font: inherit;
    margin: 0;
}

a, .a {
    color: #3b82f6;
    cursor: pointer;
    text-decoration: none;
}


b, strong {
    font-weight: 700;
}

body {
    background: #FFFFFF;
    color: #414141;
    font-family: 'Roboto', 'Tahoma', 'Arial', sans-serif;
    font-size: 16px;
    margin: 0 auto;
}

footer {
    background: #f4f4f4;
    color: #000000;
    font-size: 14px;
    margin: 36px auto 0;
    width: 100%;
    padding: 24px;
    text-align: center;
}

footer a {
    color: #313131;
    font-weight: 700;
}

footer a:hover {
    text-decoration: underline;
}

main {
    margin: 0 auto;
    max-width: 960px;
    min-height: 100vh;
    width: 100%;
}

.fs {
    align-items: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
}

.flex {
    display: flex;
}

p {
    margin: .6em 0;
}

.page-title {
    background: #FFFFFF;
    font-size: 36px;
    font-weight: 700;
    margin: 1rem auto;
    max-inline-size: 40ch;
    text-align: center;
    text-transform: uppercase;
    text-wrap: balance;
    padding: 4px;
}

.hidden {
    display: none !important;
}

@media only screen and (min-width: 600px) {
    .only-mobile {
        display: none;
    }
}

@media only screen and (max-width: 599px) {
    .only-full {
        display: none;
    }

    .page-title {
        font-size: 22px;
    }

    .page-subtitle {
        font-size: 18px;
    }

    main {
        padding: 0 12px;
    }

}
