@font-face {
    font-family: '3ds';
    font-style: normal;
    src: url(../fonts/3ds\ Condensed\ Regular.ttf);
}

* {
    box-sizing: border-box;
  }
  
html {
    font-family: '3ds';
    font-size: 20px;
    width: 100%;
}

h1 {
    color: black;
    text-align: center;
}

input[type="text"].char {
    font-size: 2em;
}

input[type="text"], input[type="password"], input[type="submit"] {
    font-size: 1em;
}

@media screen and (min-width: 75em) {
    h1 {
        font-size: 4em;
        margin-bottom: 2.5em;
    }
}

@media not screen and (min-width: 75em) {
    h1 {
      font-size: 1.8rem;
      margin-bottom: 1em;
    }
}

@media screen and (min-width: 85em) {
    figcaption {
        font-size: 1.2em;
    }
    ul.rows {
        margin-top: -6em;
    }
    ul.cols {
        width: 60%;
        margin-left: 20%;
        display: inline;
    }
    ul {
        width: 60%;
        margin-left: 20%;
        display: flex;
    }
    li.back {
        margin-top: 8em;
    }
    li {
        flex: 1;
        margin-top: 1em;
    }
    input[type="text"], input[type="password"], input[type="submit"] {
        margin-bottom: 1em;
    }
    div.char {
        font-size: 15em;
        text-align: center;
    }
    .home {
        width: 80px;
        height: 80px;
    }
    div.special {
        padding-bottom: 1em;
    }
    input[type="submit"].reponse {
        margin-top: 1em;
    }
    .home {
        border: 2px solid dimgray;
    }
}

@media not screen and (min-width: 85em) {
    figcaption {
        font-size: 1.2em;
    }
    ul {
        width: 80%;
        margin-left: 10%;
        margin-top: 3em;
    }
    li {
        margin-bottom: 1em;
    }
    input[type="text"], input[type="password"], input[type="submit"] {
        margin-top: 1em;
    }
    div.char {
        font-size: 10em;
        text-align: center;
    }
    .home {
        width: 50px;
        height: 50px;
        border: 2px solid dimgray;
        font-size: 0.9em;
    }
}

ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

figure {
    margin: auto;
}

a.menu:link,
a.menu:visited {
    background-color: rgba(222, 207, 232, 0.2);
    border: 2px solid rgb(168, 79, 227);
    text-decoration: none;
    display: inline-block;
    padding: 10px;
    color: #333;
    font-weight: bold;
    margin: auto;
}

a.menu:hover {
    background-color: rgba(223, 207, 232, 0.7);
}

@keyframes glowing {
    0% {
        background-color: #999;
    }
    25% {
        background-color: #eee;
    }
    50% {
        background-color: #999;
    }
    75% {
        background-color: #eee;
    }
    100% {
        background-color: #999;
    }
}

button.continue {
    border: 2px solid dimgray;
    font-size: 0.9em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    animation: glowing 4000ms infinite;
}

input[type="submit"] {
    border: 2px solid gray;
    background-color: #ccc;
    font-size: 0.9em;
    padding: 0.4em;
}

input[type=checkbox] {
    transform: scale(1.3);
}

div.continue {
    padding-bottom: 0.5em;
    margin-bottom: 1.2em;
    padding-top: 0.2em;
    border-bottom: 4px dashed black
}

div.reponse {
    padding-top: 1.5em;
    padding-bottom: 2em;
}

span.correct, span.incorrect {
    font-size: 2em;
    padding-left: 0.6em;
    padding-right: 0.6em;
    padding-top: 0.4em;
    padding-bottom: 0.4em;
}

span.correct {
    border: 2px solid green;
}

span.incorrect {
    border: 2px solid red;
}