@import url('https://fonts.googleapis.com/css2?family=Merriweather&display=swap');

@font-face {
    font-family: 'Brandon Grotesque Light';
    src: url('../assets/font/BrandonGrotesque-Light.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    position: static;
    overflow-y: hidden;
    height: 100%;
    max-height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    background: #B9CECF;
    font-family: 'Merriweather', serif;

    height: var(--vh);
}

.header {
    float: left;
    text-align: center;
    width: 100%;
    padding: 2px 10px;
    background: #74A5AE;
}

.header img {
    float: left;
    padding: 5px;
    width: 15%;
    height: auto;
    max-width: 120px;
}

.headerText {
    float: left;
    width: 85%;

    font-family: "Brandon Grotesque Light", "Segoe Print", sans-serif;
    color: #ffffff;
    font-size: 4vw;

    text-align: left;
    padding-left: 7px;
}

@media screen and (min-width: 1200px) {
    .headerText {
        font-size: 40px;
    }
}

header p {
    font-weight: bold;
}

h1 {

}

h4 {
    padding-bottom: 20px;
}

h5 {
    padding-top: 10px;
    padding-bottom: 10px;
}

/*
*******************************
  FlashCard: Image
*******************************
*/
#flashCard {
    width: 80%;
    display: flex;
    flex-flow: column;

    max-width: 600px;
    text-align: center;
    background: #FFF8EE;
    border-radius: 1.5rem;
    box-shadow: -10px 0px 13px -7px rgba(0, 0, 0, 0.18), 10px 0px 13px -7px rgba(0, 0, 0, 0.18), 5px 5px 15px 5px rgba(0, 0, 0, 0.18);
}

.fc img {
    width: 100%;
}


/*
*******************************
  Question/ Answer Styles
*******************************
*/
.question, .answer {
    padding: 8px 11px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.question p, .answer p {
    margin: 0;
    padding-bottom: 15px;
}

.answer {
    /*flex: 1;*/
    /*background-color: #7e8b96;*/
}

.answer p {
    color: #2d1f1f;
}

#showAnswer {
    height: 0;
    /*width: 100%;*/
    /*background: #6fadde;*/
    /*border-radius: 0 0 1rem 1rem;*/
}

#showAnswer p {
    padding: 20px;
    background: #f443361a;
    margin: 20px;
    border-radius: 2rem;

}

#hiddenAnswer {
    height: 100%;
    /*flex-flow: column;*/
}

.result {
    /*width: 40vw;*/
    padding: 10px;
}

.button {
    margin: 15px;
    padding: 5px;
    border: solid 1px;
    border-radius: 1rem;
}

/*
*******************************
  Controls: Correct, Wrong Styles
*******************************
*/
.correct, .wrong {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.controls {
    color: white;
    font-size: 3em;
    cursor: pointer;
}

.controls div {
    width: 50%;
    text-align: center;
    cursor: pointer;
    display: inline-block;
}


.correct {
    border-bottom-left-radius: 1.5rem;
    background-color: #7dce90;
    float: left;
}

.wrong {
    border-bottom-right-radius: 1.5rem;
    background-color: #dc7a6b;
}

/*
*******************************
  Footer Styles
*******************************
*/
.footer {
    padding: 3px;
    background: #74A5AE;
    font-size: 1.2rem;
    width: 100%;
    /*display: flex;*/
    /*flex-direction: row;*/
    /*justify-content: center;*/
}

footer > div {
    /*-webkit-box-sizing: border-box;*/
    /*-moz-box-sizing: border-box;*/
    /*box-sizing: border-box;*/
    float: left;
    font-size: .8em;
    padding: 6px;
}

.stats {
    color: #ffffff;
    width: 100%;
}

.questions-count {
    display: inline-block;
}

.current-stats {
    float: right;
    margin-right: 20px;
}

#correctStat, #wrongStat {
    font-weight: bold;
    padding-left: 2px;
}


