html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

.container {
  width: 280px;
  padding-right: 8px;
  padding-left: 8px;
  outline: 1px solid red;
  margin: 0 auto;
}

@media screen and (min-width: 752px) {
  .container {
    width: 568px;
    padding-right: 16px;
    padding-left: 16px;
  }
}
@media screen and (min-width: 1264px) {
  .container {
    width: 1000px;
    padding-right: 20px;
    padding-left: 20px;
  }
}
body {
  background: radial-gradient(circle at top center, #0a1930 0%, #000000 70%) no-repeat, linear-gradient(to bottom, #0a1930, #000000);
  background-attachment: fixed;
  color: #ffffff;
  font-family: "Funnel Display";
}

.header {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 30px;
}
.header .game__status {
  font-size: 12px;
  margin-bottom: 25px;
}
.header__box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.header__title {
  font-size: 48px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.header__image {
  border-radius: 50%;
}
.header #header__checkbox-laungage {
  display: none;
}
.header__label-laungage-changer {
  margin-top: 5px;
  width: 45px;
  height: 20px;
  display: block;
  border-radius: 11px;
  background: #ffffff;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}
.header__label-laungage-changer::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  background-image: url("../img/uk-flag.png");
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s;
}
.header #header__checkbox-laungage:checked + .header__label-laungage-changer::after {
  left: 24.5px;
  background-image: url("../img/ua-flag.png");
}

.hero {
  padding-bottom: 50px;
}
.hero__box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.hero__button {
  background-color: #178236;
  color: #ffffff;
  padding: 20px;
  border: none;
  border-radius: 5px;
  transition: all 0.3s;
}
.hero__button:hover {
  transform: scale(1.2);
}
.hero__wrapper {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero__subtitle {
  font-size: 20px;
}
.hero__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.hero__btn {
  padding: 10px;
  background-color: #2984D1;
  color: var(--white-color);
  border: none;
  border-radius: 3px;
  transition: all 0.2s;
}
.hero__btn:hover {
  transform: scale(1.2);
}/*# sourceMappingURL=main.css.map */