                    * {
                        margin: 0;
                        padding: 0;
                        box-sizing: border-box;
                        font-family: sans-serif;
                    }
                    
                    .main {
                        height: 100vh;
                        width: 100vw;
                        background-color: #f6d6d6;
                        position: fixed;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        background-image: url("https://w0.peakpx.com/wallpaper/340/807/HD-wallpaper-blue-color-crystal-soft-solid-solid-color.jpg");
                        background-size: cover;
                    }
                    
                    .boxes {
                        width: 333px;
                        height: 333px;
                        background-color: #d0d0c6;
                        display: flex;
                        flex-wrap: wrap;
                        justify-content: space-around;
                        align-items: center;
                    }
                    
                    .box-style {
                        background-color: #17b7b5;
                        width: 30%;
                        height: 30%;
                        margin-left: 1px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        font-size: 40px;
                    }
                    
                    .result {
                        width: 400px;
                        height: 100px;
                        background-color: #fff;
                        position: absolute;
                        top: 5%;
                        border-radius: 5px;
                        padding: 10px;
                        align-items: center;
                        font-size: 20px;
                        display: flex;
                        & .message {
                            width: 80%;
                            height: 50%;
                            background-color: #bde9f5;
                            text-align: center;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                        }
                        & button {
                            width: 20%;
                            height: 50%;
                            background-color: #5cf157;
                            font-size: 16px;
                            border-style: none;
                        }
                        display: none;
                    }
                    
                    .active-player {
                        width: 15%;
                        height: 60px;
                        background-color: white;
                        position: absolute;
                        bottom: 10%;
                        border-radius: 2px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        font-size: 25px;
                    }
                    
                    button:hover {
                        background-color: #09bb24;
                    }
                    /* mediaQueries for tablets */
                    
                    @media (min-width:700px) and (max-width:1200px) {
                        .active-player {
                            bottom: 20%;
                        }
                    }
                    /* mediaQueries for mobiles */
                    
                    @media (max-width:700px) {
                        .active-player {
                            width: 100px;
                            margin-top: 30px;
                        }
                        .result {
                            width: 90%;
                        }
                    }
                    
                    footer {
                        background-color: #fff;
                        position: absolute;
                        bottom: 0;
                        width: 100%;
                        display: flex;
                        justify-content: center;
                        font-size: 12px;
                    }