h2,
p {
    margin: 0;
}

html {
    font-size: 62.5%;
}

body {
    margin: 0;
    padding: 0;
    background-image: url(../images/bg.jpg);
    background-size: cover;
    width: 100vw;
    height: 100vh;
    background-position: center bottom;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

#main {
    max-width: 90rem;
    width: 96%;
}

#startScreen {
    padding: 4rem;
    background-color: rgba(255, 255, 255, 0.8);
    border: 8px solid #fff;
    animation: smallToBig .5s ease-in;
    transform: scale(1);
}

.rightImg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#gameScreen {
    padding: 4rem;
    background-color: rgba(255, 255, 255, 0.8);
    border: 8px solid #fff;
    animation: smallToBig .5s ease-in;
    transform: scale(1);
    transition: all .2s;
}

.activityCompleted{
    padding: 4rem;
    background-color: rgba(255, 255, 255, 0.8);
    border: 8px solid #fff;
    animation: smallToBig .5s ease-in;
    transform: scale(1);
}

.completedDiv{
	font-family: "Passion One", sans-serif;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.cd__score{
	font-size: 4rem;
	color: #f38c22;
}
.cd__congrats{
	font-size: 5rem;
	color: #496f20;
}

#startWrapper {
    text-align: center;
}

.opListing{
    font-family: "Passion One", sans-serif;
    font-size: 2.5rem;
	border: 2px solid #000;
    padding: 10px;
    margin: 10px;
    border-radius: 15px;
}



.quesTxt{
	font-family: "Passion One", sans-serif;
	font-weight: 400;
	color: #000;
	font-size: 3.5rem;
    line-height: 6.5rem;
}


.quesImg{
    margin: 3rem 0 8rem 0;
}
.quesImgWrapper{
    text-align: center;
    position: relative;
    z-index: 90;
}
.quesImgWrapper img{
    max-width: 100%;
}
.submitBtnWrapper{
    text-align: center;
}
#submitButton {
    font-family: "Passion One", sans-serif;
    font-weight: 400;
    width: 276px;
    height: 86px;
    background-image: url(../images/start.png);
    border: 0;
    background-color: transparent;
    color: #f7f9a1;
    text-transform: uppercase;
    font-size: 3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}


.startText {
    font-family: "Passion One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.startText H2 {
    font-family: "Passion One", sans-serif;
    font-weight: 700;
    font-style: normal;
    display: inline-block;
    background-image: linear-gradient(to bottom, #fea64e, #6c3600);
    color: transparent;
    background-clip:text;
    -webkit-background-clip:text;
    font-size: 6rem;
    margin-bottom: 2rem;
}

.startText p {
    width: 80%;
    margin: auto;
    line-height: 3rem;
    font-weight: 400;
}

#startGame {
    font-family: "Passion One", sans-serif;
    font-weight: 400;
    width: 27.6rem;
    height: 8.6rem;
    background-image: url(..//images/start.png);
    border: 0;
    background-color: transparent;
    color: #f7f9a1;
    text-transform: uppercase;
    font-size: 3rem;
    cursor: pointer;
}

@keyframes smallToBig {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bigToSmall {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}

@media only screen and (max-width: 600px) {
    html {
        font-size: 50%;
    }
    #gameScreen{
        padding: 2rem;
    }
    .quesImg {
        margin: 3rem 0 13rem 0;
    }
}

@media only screen and (max-height: 600px) {
    body {
        display: block;
    }
    #main{
        margin: auto;
    }
}