* {
    box-sizing: border-box;
    background: none repeat scroll 0 0 transparent;
    border: medium none;
    border-spacing: 0;
    color: #26589F;
    font-family: 'Bruno Ace SC', cursive;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.42rem;
    list-style: none outside none;
    margin: 0;
    padding: 0;
    text-align: left;
    text-decoration: none;
    text-indent: 0;
}

body {
    background-image: url("bg.jpg");
    background-size: cover;
}

.container {
    display: flex;
    justify-content: space-around;
    width: 50%;
    height: 50vh;
    background-color: rgba(245, 222, 179, 0.9);
    box-shadow: -2px -3px grey;
    border-radius: 5px;
    margin: 2rem auto;
    align-items: center;
}


.game {
    justify-content: space-around;
    width: 50%;
    height: auto;
    padding: 10px;
    background-color: rgba(245, 222, 179, 0.9);
    box-shadow: -2px -3px grey;
    border-radius: 5px;
    margin: 2rem auto;
    align-items: center;
}

.button {
    width: 30%;
    height: 10vh;
    background-color: #26589F;
    color: white;
    text-align: center;
    font-size: 35px;
}
.button:hover {
    background-color: grey;
    translate: -5px -5px;
    box-shadow: 5px 5px black;
    cursor: pointer;
}

.heading {
    display: block;
    width: 50%;
    text-align: center;
    margin: 5vh auto;
    color: black;
    font-size: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid grey;
    border-radius: 5px;
    height: 100px;
    padding-top: 35px;
}
.user {
    font-size: 25px;
    padding: 10px;
    height: 50px;
    border: none;
    margin: 5px auto;
}
.status {
    font-size: 15px;
    height: auto;
    width: 100%;
    background-color: black;
    color: white;
    border-radius: 0px;
}

table {
    border-collapse: collapse;
    margin: auto;
}

td {
    width: 100px;
    height: 100px;
    border: 1px solid black;
    text-align: center;
    font-size: 40px;
}
.replayBtn {
    background-color: RED;
    color: white;
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
}
@media (max-width:1260px) {
    .container {
        width: 90%;
    }
    .heading{
        width: 90%;
        font-size: 35px;
    }
    .game{
        width: 90%;
    }
    .button{
        font-size: 25px;
    }
    .user{
        font-size: 25px;
    }
    .status{
        font-size: 20px;
        width: 100%;
    }
    td{
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
}
@media (max-width: 767px) {
    .container {
        width: 90%;
    }
    .heading{
        width: 90%;
        font-size: 25px;
    }
    .game{
        width: 90%;
    }
    .button{
        font-size: 15px;
    }
    .user{
        font-size: 15px;
    }
    .status{
        font-size: 13px;
        width: 100%;
    }
    td{
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}