@import url('https://fonts.googleapis.com/css2?family=Hachi+Maru+Pop&display=swap');

html,body{
    height: 100%;
    margin: 0;
}

.rules_win{
    padding: 0 5px 0 5px;
    border: 1px solid #ae7a52;
    height: 130px;
    width: 260px;
    font-size: 12px;
    top: 70px;
    right: -5px;
    border-radius: 15px;
}

.win_gif img{
    height: 100px;
    width: 100px;
}

.left{
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie{
    margin-right: 5px;
    margin-left: 5px;
}

.again_top:hover, .home:hover{
    cursor: pointer;
    opacity: .7;
}

.text_p{
    font-size: 14px;
    color: #ae7a52;
    font-family: 'Hachi Maru Pop', sans-serif;
    font-weight: 900;
    margin-right: 5px;
}

.top_line{
    padding-top: 3px;
    padding-left: 5px;
    padding-right: 5px;
    height: 65px;
    width: 100%;
    background: #ffcfaf;
    border: 3px #ae7a52 solid;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
    font-size: 16px;
    color: #ae7a52;
    font-family: 'Hachi Maru Pop', sans-serif;
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    /*z-index: 25;*/
}

.text{
    width: 91vw;
    height: 30vw;
    position: fixed;
    z-index: 15;
    display: none;
    align-items: center;
    justify-content: center;
    color: #ae7a52;
    text-shadow: 3px 3px white;
    font-size: 24px;
    font-weight: 900;
    font-family: 'Hachi Maru Pop', sans-serif;
    text-align: center;
    background: #00000050;
    cursor: pointer;
    border: none;
    border-radius: 15px;
}

.page{
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: repeat url("../pictures/bg4.png");
}

.panel{
    position: absolute;
    z-index: 5;
    width: 91vw;
    height: 30vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4a46079;
    /*margin-bottom: 15px;*/
    border: none;
    border-radius: 15px;
}

.cell{
    height: 13vw;
    width: 13vw;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: none;*/
    /*border-radius: 23px;*/

}
.white{
    background: #ffcfaf;
}

.black{
    background: #8b4512;
}

[data-type='black'], [data-type='white'], [data-type='none']{
    height: 80%;
    width: 80%;
    border-radius: 50%;
    background-size: cover;
    /*opacity: 80%;*/
}

[data-type='black']{
    background: linear-gradient(to right bottom, black, dimgray);
    cursor: pointer;
    border: 2px solid #2b2b2b;
}
[data-type='white']{
    background: linear-gradient(to right bottom, white, grey);
    cursor: pointer;
    border: 2px solid #9d9d9d;
}
[data-type='none']{
    background: none;
}

@media (max-height: 480px) and (orientation: landscape) {

    .rules_win{
        height: 60px;
        width: 600px;
        top: 38px;
        right: -5px;
        border-radius: 10px;
    }

    .top_line {
        height: 40px;
        font-size: 16px;
    }

    .text_p {
        font-size: 18px;
    }

    .text{
        font-size: 48px;
    }

    .win_gif img{
        height: 200px;
        width: 200px;
    }

    .home img, .again_top img, .rules img {
        height: 30px;
        width: 30px;
    }

    .panel{
        display: flex;
        align-items: center;
        justify-content: space-around;
        margin-top: 70px;
        height: 20vw;
    }
}