body {
    margin: 0px;
    font-family: "Museo Slab 300";
    color: black;
    font-size: 13px;
}

body a {
    cursor: pointer;
    color: #1B99E8;
}

body a:hover {
    color: #D61043;
}

.main {
    text-align: center;
}

.pointer {
    cursor: pointer;
}

.page-title {
    font-size: 75px;
    color: #008EFF;
    padding: 50px;
    margin-top: 50px;
}

.page-title .pt-sub {
    font-size: 30px;
    padding: 20px 100px;
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.quiz {
    font-size: 100px;
}

.answer {
    display: inline-block;
    padding: 30px;
    border: 1px solid black;
    margin: 30px;
    cursor: pointer;
    font-size: 50px;
}

.result {
    padding: 30px;
    border: 3px solid red;
    margin: 30px;
    color: red;
    display: inline-block;
}

.menu-item {
    display: inline-block;
    padding: 30px;
    border: 1px solid black;
    margin: 30px;
    cursor: pointer;
    font-size: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.menu-item:hover {
    background: orange;
    color: white;
}

.menu-item .mi-details {
    color: #E40000;
    font-size: 30px;
    margin-top: 20px;
}

.menu-item .ribbon {
    background: rgba(255, 255, 0, .75);
    color: blue;
    position: absolute;
    transform: rotate(-41deg);
    padding: 10px 0;
    right: -212px;
    bottom: 43px;
    width: 100%;
    font-weight: bold;
    font-size: 40px;
}

.return {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 100px;
    cursor: pointer;
    z-index: 100;
}

.quiz1 {
    width: 80%;
}

.game1 {
    width: 100%;
}

.match-card {
    display: inline-block;
    height: 200px;
    width: 150px;
    margin: 20px;
    border: 1px solid #008EFF;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    position: relative;
    cursor: pointer;
}

.match-card.selected {
    box-shadow: 0 4px 60px 0 rgb(254, 155, 2), 0 6px 60px 0 rgb(255, 156, 1);
}

.match-card.match {
    box-shadow: 0 4px 60px 0 rgb(68, 166, 14), 0 6px 60px 0 rgb(68, 166, 14);
}

.mobile .match-card {
    height: 15vh;
    width: 20vw;
}

.match-card .back {
    font-size: 100px;
    background: #008EFF;
    color: white;
    height: 100%;
    width: 100%;
}

.match-card .front {
    font-size: 30px;
}

.match-card .front .fa {
    font-size: 100px;
}

.match-card img {
    max-height: 175px;
    max-width: 125px;
}

.mobile .match-card img {
    max-height: 13vh;
    max-width: 17vw;
}

.game1 .title {
    font-size: 3vw;
}

.game1 .results {
    font-size: 20vw;
    color: #E40000;
    background: rgba(255, 255, 255, 0.75);
    width: 100%;
}























