* {
/*
  margin: 0;
  padding: 0;
*/
  font-family: "sans";
  font-size: 16px;
}

@font-face {
  font-family: "sans";
}

body {
  color: white;
  background: #19172e;
  user-select: none;
}

.textsel {
    user-select: text;
}
.section {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  background: #19172e;
}

.nobgimg {
    background: #19172e;
    background-image: none;
    opacity: 0.85;
}

.wrapper {
  display: grid;
  width: 350px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1px;
  grid-auto-rows: minmax(70px, auto);
}

.cell0 {
    font-size: 2rem;
    text-align: left;
    color: white;
}

.cell1 {
    font-size: 2rem;
    text-align: left;
    font-style: italic;
    color: yellow;
}

.markedCell0 {
    font-size: 2rem;
    text-align: left;
    color: white;
    background: #242030
}

.markedCell1 {
    font-size: 2rem;
    text-align: left;
    font-style: italic;
    color: yellow;
    background: #242030
}


#img {
  width: 150px;
  height: 150px;
}

.btn {
  cursor: pointer;
  color: #fff;
  background: #333;
  font-size: 24px;
  padding: 15px;
  border-radius: 8px;
  bottom: 0;
  /* margin: 150px ;*/
}

.btn:active {
  background: #1e8e3e;
}

.slimBtn {
  cursor: pointer;
  color: #fff;
  background: #333;
  font-size: 18px;
  padding: 8px;
  border-radius: 8px;
  bottom: 0;
}

.slimBtn:active {
  background: #1e8e3e;
}


.option {
    width: 350px;
    display: grid;
    grid-template-columns: 1fr 4fr 4fr;
    grid-template-rows: auto auto auto;
    grid-gap: 2px
}
.opthdr {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 1;
}
.opt1 {
    grid-column-start: 2;
    grid-row: 2;
}
.opt2 {
    grid-column-start: 3;
    grid-row: 2;
}
.opt3 {
    grid-column-start: 2;
    grid-row: 3;
}
.opt4 {
    grid-column-start: 3;
    grid-row: 3;
}
.optnext {
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row: 2;
}
.optsel {
    background: green;
}
