*,
::before,
::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: #777796;
  background: rgba(240, 240, 255, 1);
}

h1,
h2,
h3,
h4,
h5,
h6,
b {
  color: #333345;
}

ul {
  padding: 0;
}
.modal-container {
  inset: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal {
  background: rgba(250, 250, 255, 1);
  border-radius: 8px;
  width: 512px;
  padding: 16px 32px;
  max-width: 100%;
}

.box {
  list-style: none;
  height: 96px;
  width: 96px;
  line-height: 96px;
  text-align: center;
  font-size: 24px;
  border-radius: 8px;
  display: inline-block;
  color: white;
  --color: var(--md-red-600);
  background: var(--color);
  margin-right: 32px;
  margin-top: 16px;
  cursor: pointer;
  user-select: none;
}

.box:hover {
  outline: 8px solid rgba(255, 20, 56, 0.1);
}

.box:active {
  outline: 4px solid rgba(255, 20, 56, 0.3);
}

.verdict {
  display: none;
  font-size: 64px;
  align-items: center;
  padding: 32px;
  min-height: 100vh;
  max-width: 1280px;
}

.countdown {
  color: var(--md-blue-900);
}

.big {
  font-size: 96px;
  display: block;
}

.red {
  color: var(--md-red-700);
}
