.container {
    position: relative;
    margin: auto;
    width: 60%;
    height: 100%;
    border-style: solid;
    border-color:blueviolet ;
    text-align: center;
}

.tile {
    position:absolute;
    width: 30%;
    height: 30%;
    background-size: 100% 100%;
    border: 2px solid royalblue;
}

.tile1 {
    top: 15%;
    left: 15%;
    background-color: seashell;
    animation: flipIt 5s infinite;
}

img {
    width: 100%;
    height: 100%;
}

@keyframes flipIt {
    from{
        transform: rotateY(0deg);
    }
    to{
        transform: rotateY(360deg);
    }
}

.goBtn {
    position: absolute;
    width: 100px;
    height: 50px;
    bottom: 5%;
    left: 15%;
}
.pauseContinueBtn {
    position: absolute;
    width: 100px;
    height: 50px;
    bottom: 5%;
    right: 15%;
}

