@font-face {
    font-family: 'Bison';
    src: url('../fonts/Bison-Bold.ttf');
}

*,*::before,*::after{
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}
:root{
    font-size: 62.5%;
    --pc-purple: #003680;
    --pc-bluebg: #CEDDFA;
    --pc-violet: #2F4876;
    --pc-orange: #EFAB8E;
    --pc-white: #F4F4F4;
    --pc-blue: #2F8CAA;

}
html{
    box-sizing: border-box;
}
body{
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #d3d3d3;
    overflow-x: hidden;
    overflow-y: hidden;
}
img{
    max-width: 100%;
    display: block;
}
li{
    list-style: none;
}
a,
a:link,
a:hover,
a:visited{
    text-decoration: none;
    color: inherit;
}
::-webkit-scrollbar{
    display: none;
}
.app-playzat{
    margin: 0 auto;
    min-height: 90vh;
    overflow: hidden auto;
    border-radius: 3rem;
    outline: .7rem solid black;
    position: relative;
}
.desktop_mode{
    display: none;
}

@media screen and (min-width:991px) {
    .app-playzat{
/*        max-width: 36rem;*/
        width:100%;
    }
}

.app-container{
    border-radius: 3rem;
    position: relative;
}

@media screen and (max-width:991px) {
    .app-playzat{
        outline: none;
        border-radius: unset;
        min-height: 100vh;
        width: 100%;
    }
    .app-container{
        border-radius: unset;
    }
}

@media screen and (max-width: 20em) {
    :root{
        font-size: 50%;
    }
}
@media screen and (min-width:1024px){
    .mobile_mode{
        display: none;
    }
    .desktop_mode{
        display: block;
        width: 100%;
    }
}
