html {
  font-family: Ubuntu, Oswald, sans-serif;
  font-weight: 400;
}
body *,
*::after,
*::before {
  box-sizing: border-box;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}
a {
  text-decoration: none;
}
a,
button {
  outline: none;
}
.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

.text {
  font:
    400 16px / 1.3 "Ubuntu",
    sans-serif;
  color: #535755;
}

.button {
  display: inline-block;
  padding-block: 19px;
  padding-inline: 32px;
  font:
    500 15px / 1.3 "Ubuntu",
    sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background: #3596ed;
  transition:
    opacity 0.2s,
    background-color 0.2s;
}
.button:hover {
  opacity: 0.85;
}
.button:not(:disabled):active {
  background-color: #237fcf;
}
button.button:disabled {
  opacity: 0.7;
  cursor: default;
}
.section {
  margin-bottom: 140px;
}

.title-large {
  font-family: "Oswald";
  font-weight: 600;
  font-size: 48px;
  line-height: 115%;
  text-transform: uppercase;
  color: #2c332f;
  margin-bottom: 40px;
  max-width: 596px;
}
.title-medium {
  font:
    500 24px / 1.15 "Oswald",
    sans-serif;
  text-transform: uppercase;
  color: #2c332f;
}

.text-sub {
  font:
    300 14px "Ubuntu",
    sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: right;
  color: #858e8a;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid #3596ed;
  outline-offset: 1px;
}
