body {
    counter-reset: crossword-row-counter;

}

#crossword {
    min-width: 500px;
    float: left;
}

.row-number {
    font-size: 12px;
    float: left;
    counter-increment: crossword-row-counter;

}

.row-number::after {
    content: counter(crossword-row-counter);
    z-index: 100;
    position: absolute;
    padding: 3px;
}

.crossword-letter {
    width: 50px;
    height: 50px;
    text-align: center;
    border: 2px solid black;
    margin-left: -2px;
    float: left;

    text-transform: uppercase;
}

.crossword-letter:first-child {
    margin: 0px;
}

.empty-letter {
    width: 50px;
    height: 50px;
    margin-right: 2px;
    float: left;

}


.crossword-letter:focus {
    background-color: #f1e7ee;
    outline: none;
}

.clear {
    clear: both;
}

.cross-row {
    clear: both;
}

.cross-row .crossword-letter {
    margin-top: -2px;
}

#submit_crossword {
    background-color: #b80c8a;
    border: none;
    padding: 10px 55px;
    color: white;
    border-radius: 3px;
    font-size: 18px;
    margin: 30px 0px 10px 50px;
    transition: all 0.5s;
    cursor: pointer;
}

#submit_crossword:hover {
    background-color: #8b0867;
    box-shadow: 0px 3px #5e0746;

}

#submit_crossword:active {
    box-shadow: inset 0px 3px rgba(0, 0, 0, 0.1);


}

#submit_crossword:focus {
    outline: none;
}

.good input {
    background-color: #28a745 ;
}

.bad input {
    background-color: #dc3545  ;
}

.inaktiv input {
    backgroud-color: #222222;
    disabled: true;
}

#questions {
    font-family: arial;
    font-size: 15px;
    float: left;
    margin-left: 35px;
    line-height: 1.5;

}

#questions ul {
    list-style: none;
    padding: 10px 20px;
    counter-reset: list-numbers;
}



.main-highlighted {
    animation: myanim 1s 1;
    animation-fill-mode: forwards;
}

@keyframes myanim {
    from {
        background-color: #acedf3;
        font-weight: normal;
    }
    to {
        background-color: #830761;
        font-weight: bold;
        font-size: 24px;
        color: #fff;
    }
}

#cross-row0 {
  position: fixed;
  top: 100px;
  left: 200px;
  width: 600px;
  height: 200px;
}

#cross-row1 {
  position: fixed;
  top: 200px;
  left: 400px;
  width: 600px;
  height: 100px;
}

#cross-row2 {
  position: fixed;
  top: 375px;
  left: 100px;
  width: 600px;
  height: 400px;
}

#cross-row3 {
  position: fixed;
  top: 450px;
  left: 400px;
  width: 600px;
  height: 400px;
}