

body {
    margin:0px;
    font-family: "Poppins", "M PLUS 1", sans-serif;
    overflow-x:hidden!important;
    user-select:none;
    text-shadow: 0 0 1px rgba(51,51,51,0.5);
    color:#000000;
    background-repeat:repeat;

}

body {
    --sb-track-color: #ffffff;
    --sb-thumb-color: #000000;
    --sb-size: 0px;
}
  
body::-webkit-scrollbar {
    width: var(--sb-size)
}
  
body::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 8px;
}
  
body::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 8px;  
}

p {
    margin-top:0px;
}

a{
    font-weight:600
}

a .jp{
    font-weight:800!important;
}
  
@supports not selector(::-webkit-scrollbar) {
    body {
      scrollbar-color: var(--sb-thumb-color)
                       var(--sb-track-color);
    }
}

.center{
    margin:0 auto;
    justify-content:center;
    align-items:center;
    display:flex;
    height:100svh;
}

.center img{
    width:600px;
    height:600px;
}

@media (min-width: 0px) and (max-width: 800px) {
    .center img{
        width:100%!important;
        height:auto!important;
    }

    .center{
        height: auto!important    
    }
}