html {
    font-family: Ubuntu, sans-serif;
    font-weight: 400;
}

*, *::before, *::after {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 15px;
}

.text {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #535755;
}

.button {
    display: inline-block;
    padding: 19px 32px;
    text-align: center;

    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 130%;
    letter-spacing: 0.02em;

    text-transform: uppercase;
    color: #fff;
    background-color: #3596ed;

    transition: opacity .2s, background-color .2s;
}

.button:hover {
    opacity: 0.85;
}

.button:not(:disabled):active {
    background-color: #2f88d6;
}

button.button:disabled {
    opacity: 0.65;
    cursor: default;
}

.section {
    margin-bottom: 140px;
}

.title-large {
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    line-height: 115%;
    font-size: 48px;

    text-transform: uppercase;
    color: #2c332f;

    max-width: 596px;

    margin-bottom: 40px;
}

.title-medium {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 115%;

    text-transform: uppercase;
    color: #2c332f;
}

.article-title-large {
    font-size: 48px;
}

.text-sub {
    font-weight: 300;
    font-size: 14px;

    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: right;
    color: #858E8A;
}

a, button {
    outline: none;
}

a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid #3596ed;
    outline-offset: 1px;
}

a:active {
    color: #6eb7f7;
}