:root {
  font-size: 1px;
}

body {
  font-size: 16rem;
}

html {
  scroll-behavior: smooth;
}
@media (max-width: 1440px) {
  html {
    scroll-behavior: smooth;
  }
}

@media (max-width: 500px) {
  html {
    scroll-behavior: smooth;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  list-style: none;
  text-decoration: none;
  transition: 0.3s;
}

.wrapper {
  overflow: hidden;
  min-height: 100%;
}

.bg-container {
  background: url(../assets/images/bg.png) no-repeat center/cover;
  height: 100vh;
  min-height: 734px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
}
@media (max-width: 1069px) {
  .bg-container {
    display: grid;
    justify-content: center;
    justify-items: center;
    min-height: 1000px;
  }
}

.container {
  max-width: 1390rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 1069px) {
  .container {
    display: grid;
    align-items: center;
    justify-content: center;
  }

}

.table-container {
  display: grid;
  justify-items: center;
  gap: 20px;
}

.table {
  width: 490px;
  height: 450px;
  border-collapse: collapse;
  border: 2px solid black;
}
.table__colgroup {
  border: 2px solid black;
}
.table__top-row {
  border-bottom: 2px solid black;
}

.mc {
  background: white;
}
.mc__container {
  display: grid;
  gap: 20px;
  justify-items: center;
}
.mc__stopwatch {
  font-size: 38px;
}
td {
  position: relative;
  border: 1px solid black;
  padding: 2px;
  background: white;
  width: 61px;
}

th {
  border: 1px solid black;
  background: antiquewhite;
  padding: 8px;
  width: 61px;
}

tr {
  height: 56px;
}

.select {
  color: white;
  max-width: 265px;
  width: 100%;
}
.select__ul {
  gap: 10px;
  display: grid;
  font-size: 25px;
  justify-items: end;
}
@media (max-width: 1069px) {
  .select__ul {
    justify-items: center;
  }
}
.select__li {
  font-size: 20px;
  cursor: pointer;
}
.select__li:hover {
  color: tomato;
}

.red {
  color: tomato;
}

.span {
  height: 100%;
  display: block;
  transition: 0s;
}

.black {
  background: black;
}

.cross {
  color: brown;
  font-size: 49px;
  position: absolute;
  left: 50%;
  top: 32%;
  transform: translate(-50%, -50%);
}

.modal {
  visibility: hidden;
  background: url(../assets/images/win.jpg) center center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 490px;
  height: 734px;
  display: grid;
  color: tomato;
  justify-items: center;
  align-content: space-between;
  padding: 11px 23px 88px;
  font-size: 36px;
}

.score {
  color: white;
  max-width: 265px;
  width: 100%;
}
.score__ul {
  display: grid;
  gap: 10px;
  font-size: 25px;
}
.score__li {
  font-size: 20px;
}/*# sourceMappingURL=style.css.map */