.button {
  border: 2px var(--black-col) solid;
  border-radius: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-family: inherit;
  font-weight: 700;
  width: 9.1875rem;
  height: 2.9375rem;
  transition: background-color 0.1s ease-in-out, color 0.5s ease-in-out;
}

.button:hover {
  color: var(--white-col);
  background-color: var(--black-col);
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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;
  }
}
@font-face {
  font-family: Roboto;
  src: local(Roboto) local(Roboto-Regular) url(/src/assets/fonts/Roboto/Roboto-Regular.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: OpenSans;
  src: local(OpenSans) url(/src/assets/fonts/Open_Sans/OpenSans-VariableFont_wdth\,wght.ttf);
}
html {
  box-sizing: border-box;
  font-size: 100%;
  line-height: 1.15;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--main-font);
  background-color: var(--bg-col);
  color: var(--white-col);
  width: 100vw;
  height: 100vh;
}

.hex-body {
  background-color: bisque;
}

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

:root {
  --main-font: "Roboto", sans-serif;
  --secondary-font: OpenSans, sans-serif;
}

:root {
  --bg-col: hsl(210, 36%, 96%);
  --black-col: #222;
  --text-main-col: hsl(205, 86%, 17%);
  --white-col:#fff;
  --title-col:hsl(205, 78%, 60%);
  --nav-col: rgb(46, 58, 66);
}

:root {
  --transition: all 0.3s linear;
}

.header {
  display: flex;
  justify-content: center;
  background-color: var(--white-col);
  box-shadow: 0.0625rem 0.0625rem 1.25rem 0.3125rem #b8b8b8;
  height: 2.8125rem;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 43.75rem;
}
.header__wrapper p {
  color: var(--title-col);
  font-size: 1rem;
  letter-spacing: 0.25rem;
  font-weight: bold;
  line-height: 1rem;
}
.header__wrapper__nav-bar {
  display: flex;
  justify-content: space-evenly;
  font-family: var(--secondary-font);
  font-size: 1rem;
  width: 6.25rem;
}
.header__wrapper__nav-bar a {
  color: var(--nav-col);
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.25rem;
  margin-right: 1.25rem;
  transition: color 0.1s ease-in-out;
}
.header__wrapper__nav-bar a:hover {
  color: var(--title-col);
}

.main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}
.main__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.main__wrapper__text-area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 43.75rem;
  height: 4.5rem;
  background-color: var(--black-col);
  border-radius: 0.625rem;
}
.main__wrapper__text-area p {
  font-size: 2rem;
  font-weight: bold;
}
.main__wrapper__text-area p span {
  color: var(--title-col);
}
