@font-face {
    font-family: "SummaryNote";
    src: url("fonts/@font-face/SummaryNotesRegular-Ea5ln.ttf");
    /* IE9*/

}

@font-face {
    font-family: "Sunnyspells";
    src: url("fonts/@font-face/SunnyspellsRegular-MV9ze.otf") format("opentype");
    /* IE9*/

}

* {
    font-family: 'SummaryNote', serif;
    background-color: #FFD1DC;
}
body > :not(#introduction):not(.help-popup){
    display: none;
}

#help {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    font-size: 5rem;
    text-decoration: none;
    color: #15a944;
    z-index: 99;
    background-color: transparent;
}


html {
    scroll-snap-type: mandatory;
    scroll-snap-points-y: repeat(100vh);
    scroll-snap-type: y mandatory;
}

section {
    height: 100vh;
    font-size: 1.5rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-snap-align: start;
}

.center h1 {
    font-size: 8rem;
    text-align: center;
    color: black;
    -webkit-text-fill-color: white;
    /* Will override color (regardless of order) */
    -webkit-text-stroke: 1px black;
}

.center,
fieldset {
    width: 80vw;
    
}
.center-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.center-btn button{
    font-size: 2rem;
}

fieldset>* {
    display: block;
}

fieldset button {
    display: inline-block;
}

fieldset>button {
    margin: 2% 0;
    font-size: 1rem;
}

input {
    height: 2rem;
    font-size: 1rem;
}

#level-3 .keyboard {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    font-size: 2rem;
    z-index: 0;
}

#level-3 fieldset {
    z-index: 6;
}

#level-3 .keyboard .correct,
#level-3 .keyboard .incr {
    position: absolute;
}

#level-3 .keyboard a,
input[type="text"],
input[type="email"] {
    font-family: "Sunnyspells";
    text-decoration: none;

}

#validation-txt, #validation-txt-2{
    font-family: "Sunnyspells";
    color: red;
    font-size: 1rem;
}

#selectedDate {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1rem;
}

#btn {
    position: absolute;
    transition: .5s;
    background-color: #FFD1DC;
    padding: 1%;

    width: 30%;
}

#signUpLink {
    position: absolute;
    transition: .5s;
    color: rgb(222, 63, 100);
}

.btn-parent {
    height: 2rem;
}

#level-1 {
    position: relative;
}

input {
    width: 100%;
}

#introduction>* {
    padding: 0;
    margin: 0;
}

.fa-eye {

    margin-left: -35px;
    cursor: pointer;
}

.pop-up,
.pop-up-help {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,
            0,
            0,
            0.4);
    display: none;

}
.pop-up-help {
    z-index: 99;
}

.popup {
    z-index: 9999;
    position: fixed;
    z-index: 7;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,
            0,
            0,
            0.4);
    display: none;
}

.content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888888;
    width: 80vw;
    font-weight: bolder;
}

.pop-up .content p,
.popup .content p,
.pop-up-help .content p, #playtime {
    font-family: sans-serif;
    font-size: 1.5rem;
}

.content button {
    display: block;
    margin: 0 auto;
}

.show {
    display: block;
}

@media only screen and (max-width:800px) {
    .center h1 {
        font-size: 4rem;
    }

}