body{
    background-color:#fff;
    font-family: 'Kiwi Maru', serif;
    overflow-x: hidden;
}
#main{
    display:flex;
    margin: 30px 0;
}
.leftArrow{
    position: absolute;
    top:30%;
    left:20%;
    transform: rotate(180deg);
    width:50px;
    height:50px;
    cursor: pointer;
}
.rightArrow{
    position: absolute;
    top:30%;
    right:20%;
    width:50px;
    height:50px;
    cursor: pointer;
}
.content{
    position: absolute;
    top:1%;
}
.msg{
    position: absolute;
    bottom:-50px;
    left:0;
    right:0;
    text-align:center;
}
.allPics{
    height:400px;
}
.sc1{
    background:url("/howtoplay/images/how-to-play1.png") no-repeat;
    left:0;
    right:0;
    height: 400px;
}
.sc2{
    background:url("/howtoplay/images/how-to-play2.png") no-repeat;
    left:110vw;
    right:-110vw;
    height: 400px;
}
.sc3{
    background:url("/howtoplay/images/how-to-play3.png") no-repeat;
    left:-110vw;
    right:110vw;
    height: 400px;
}
.sc4{
    background:url("/howtoplay/images/how-to-play4.png") no-repeat;
    height: 400px;
    visibility:hidden;
}
.sc5{
    background:url("/howtoplay/images/how-to-play5.png") no-repeat;
    height: 400px;
    visibility:hidden;
}
.sc6{
    background:url("/howtoplay/images/how-to-play6.png") no-repeat;
    height: 400px;
    visibility:hidden;
}
.sc7{
    background:url("/howtoplay/images/how-to-play7.png") no-repeat;
    height: 400px;
    visibility:hidden;
}
.sc8{
    background:url("/howtoplay/images/how-to-play8.png") no-repeat;
    height: 400px;
    visibility:hidden;
}
.image{
    background-size:contain;
    background-position:center;
    position: absolute;
}
.underCircles{
    display:flex;
    justify-content:space-around;
    width:60%;
    margin:65px auto 0;
    max-width: 230px;
}
.circle{
    width:10px;
    height:10px;
    border-radius:50%/50%;
    border:1px solid #000;
    margin-right:5px;
}
.content{
    width:90%;
    left:5%;
    bottom:10%;
}
.returnToTop{
    cursor: pointer;
    color: #fff;
    background-color:#000;
    border-radius: 10px;
    border: 3px solid #fff;
    width:40%;
    height:20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:15px 0;
    margin:3vh auto;
}
.returnToTop:hover{
    opacity: 0.6;
}
footer{
    margin-bottom: 3vh;
}
@media (max-width:767px) {
    .leftArrow{
        left: 0;
        z-index: 1;
    }
    .rightArrow{
        right:0;
    }
}
@media (max-width:500px){
    .msg{
        width:94vw;
        margin:0 auto;
        text-align: center;
    }
}
@media (min-width:768px){
    .image{
        width: 50vw;
        margin: 0 auto;
    }
    .returnToTop{
        width:280px;
        margin:25px auto;
        bottom:-90px;
    }
}
