:root {
  --main-font: Roboto, sans-serif;
  --numbers-font: "Opens Sans", sans-serif;
  --button-font: Arial;
}

:root {
  --black-col: rgb(34, 34, 34);
  --bg-col: hsl(210, 36%, 96%);
  --title-col: rgb(16, 42, 66);
  --green-col: rgb(0, 128, 0);
  --red-col: rgb(255, 0, 0);
}

:root {
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  box-sizing: border-box;
  background-color: var(--bg-col);
}

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
}

*, *::before, *::after {
  box-sizing: border-box;
  line-height: 1.15;
  margin: 0;
  padding: 0;
}

p {
  font-family: var(--numbers-font);
  font-weight: bold;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

h1 {
  font-size: 2em;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

button,
input {
  overflow: visible;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace;
  font-size: 1em;
}

main {
  display: block;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

code,
kbd,
samp {
  font-family: monospace;
  font-size: 1em;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.container__title {
  font-family: var(--main-font);
  font-size: 4rem;
  color: var(--title-col);
  margin-bottom: 1.875rem;
}
.container__number {
  font-family: var(--numbers-font);
  font-size: 5.3125rem;
  font-weight: bold;
  margin-bottom: 1.875rem;
}
.container__buttons {
  display: flex;
  gap: 1.25rem;
}
.container__buttons button {
  text-transform: uppercase;
  cursor: pointer;
  border: solid 0.125rem var(--black-col);
  border-radius: 0.3125rem;
  background-color: transparent;
  font-family: var(--button-font);
  font-size: 0.875rem;
  padding: 0.375rem 0.75rem;
}
.container__buttons button:hover {
  background-color: var(--black-col);
  color: white;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.15;
}

p {
  margin-top: 0;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
}

a, a:visited, a:active {
  text-decoration: none;
}
