html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: 1rem;
    font-family: sans-serif;
    overflow: hidden;
}


body {
    margin: 0;
    padding: 0;
    overflow: scroll;
    background-color: #592880;
    height: 100%;
    overflow: hidden;
}


.mainContentContainer {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}


.leftContainer {
    width: 17%;
    float: left;
}


#mainMenuBtn {
    width: 80%;
    font-size: 1.4rem;
    color: #333;
    background: rgb(254, 145, 1);
    background: -webkit-linear-gradient(bottom, rgba(254, 145, 1, 1) 0%, rgba(252, 208, 0, 1) 100%);
    background: -o-linear-gradient(bottom, rgba(254, 145, 1, 1) 0%, rgba(252, 208, 0, 1) 100%);
    background: linear-gradient(to top, rgba(254, 145, 1, 1) 0%, rgba(252, 208, 0, 1) 100%);
    display: block;
    padding: 1rem;
    margin: 1.5rem 1rem;
    text-align: center;
    cursor: default;
    font-weight: 400;
    border-radius: 0.5rem;
    /*    text-shadow: 2px 2px #333;*/
    box-shadow: 3px 3px #333;
    font-weight: 800;
    font-family: sans-serif;
}


#clicksCount {
    width: 80%;
    color: #1D2A56;
    background: #fafafa;
    padding: 1rem;
    margin: 3.5rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 3px 3px #333;
}


.clicksLegend {
    font-size: 2.7rem;
    display: block;
    text-align: center;
    width: 95%;
    padding: 0 0 0.5rem;
    margin: 0.7rem auto 0.9rem auto;
    border-bottom: 1px solid #1D2A56;
    font-weight: 500;
}


.clicksCountValue {
    font-size: 4.3rem;
    display: block;
    text-align: center;
    width: 95%;
    padding: 0 0 0.5rem;
    margin: 0.7rem auto 0.9rem auto;
    font-weight: 500;
}


#gameArea {
    float: left;
    width: 66%;
    height: 95%;
    padding: 1rem;
    margin-left: 8%;
}


.cardContainer {
    width: 100px;
    height: 100px;
    float: left;
}


.card {
    width: 100%;
    height: 100%;
    border: solid 3px #eee;
    border-radius: 0.5rem;
    perspective: 1000px;
}

.inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.front,
.back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}


.front {
    background-color: #24C2A0;
}

.back {
    background-color: #fff;
    background-image: url(../assets/images/speakerIcon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50% 50%;
    transform: rotateY(180deg);
}


.back.fx {
    background-image: url(../assets/images/speakerIcon.png);

}


.back.notes {
    background-image: url(../assets/images/musicalNote.png);
    background-size: 40% 60%;
}

.modalContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.666);
}


.modal-contents {
    width: 85%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 0.5rem;
    background: #eee;
    font-size: 1.6rem;
}


.modal-contents p {
    margin: 1rem 2rem;
}


.hidden {
    display: none;
}


.modal-title {
    width: 100%;
    line-height: 1.9rem;
    background: #179793;
    color: #eee;
    font-size: 1.8rem;
    margin: 0;
    padding: 0.5rem 0;
    text-align: center;
    border-top-right-radius: 0.5rem;
    border-top-left-radius: 0.5rem;
}


.menu-options {
    margin-left: 5%;
    color: #20615F;
    padding: 1rem 0 3.5rem 0;
    border-bottom: solid 1px #717171;
    width: 90%;
}

.menu-options p {
    font-size: 30px;
}

.menu-option {
    display: inline;
    margin-left: 1rem;
    padding: 0.5rem 3rem;
    color: #8D8D8D;
    cursor: default;
}


.menu-option.active {
    font-weight: bold;
    color: #fff;
    background: #2EBF2A;
    border-radius: 0.6rem;
    border: solid 2px #21821E;
}

.menu-options-btns {
    margin-left: 13%;
}

.button {
    margin: 1rem 4rem;
    padding: 0.5rem 3rem;
    border-radius: 0.5rem;
    color: #fff;
    cursor: default;
    text-align: center;
}


#startGameBtn {
    float: left;
    background: #179793;
    border: solid 2px #0E605D;
}


#helpBtn {
    float: right;
    background: #358CE5;
    border: solid 2px #1568BA;
}


.congratsDialog {
    text-align: center;
    width: 77%;
    margin: 4rem 11.5% 0;
    padding-bottom: 4rem;
    border-bottom: solid 1px #717171;
}

.congratsDialog h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}


.win-button {
    background: rgb(254, 146, 0);
    background: -webkit-linear-gradient(bottom, rgba(254, 146, 0, 1) 0%, rgba(252, 208, 0, 1) 100%);
    background: -o-linear-gradient(bottom, rgba(254, 146, 0, 1) 0%, rgba(252, 208, 0, 1) 100%);
    background: linear-gradient(to top, rgba(254, 146, 0, 1) 0%, rgba(252, 208, 0, 1) 100%);
    font-weight: 400;
    border-radius: 0.5rem;
    text-shadow: 2px 2px #333;
    box-shadow: 3px 3px #333;
    margin: 3rem 5rem;
    color: #fff;
    padding: 1rem 3rem;
    font-size: 1.7rem;
    cursor: default;
}


#playAgainBtn {
    float: left;
}


#winMainMenuBtn {
    float: right;
}

/*FOCUS STYLES*/
@media (min-width: 1100px) {
    .menu-options-btns {
        margin-left: 20%;
    }
}

/*ECLIPSE WINDOW STYLES*/
@media (min-width: 1600px) {
    .menu-options-btns {
        margin-left: 28%;
    }
}

/*ECLIPSE FULLSCREEN STYLES*/
@media (min-width: 1900px) {
    .menu-options-btns {
        margin-left: 30%;
    }
}
