@font-face {
    font-family: 'print clearly';
    src: url('./font/PrintBold-J5o.ttf');
}
:root{
    font-family: 'print clearly';
    color: rgb(182, 182, 182);
    user-select: none;
}
h1{
    font-size: 8vh;
}
h2{
    font-size: 6vh;
}
h3{
    font-size: 4vh;
}
h4{
    font-size: 3vh;
}
h1,h2,h3,h4,h5,h6,p{
    pointer-events: none;
    user-select: none;
}

canvas{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: black;
}
.pnl{
    position: fixed;
    z-index: 0;
    width: 50%;
    height: 60%;
    min-width: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid rgba(0, 202, 202, 0.588);
    box-shadow: 0 0 22px rgba(0, 255, 255, 0.381);
    padding: 20px;
    border-radius: 32px;
    backdrop-filter: blur(1px);
    background: rgba(28, 28, 28, 0.75);
    overflow: hidden;
    display: flex;
   align-items: center;
   flex-direction: column;
   transition: all 1s ease;
   display: flex;
   flex-direction: column;
   gap: 10px;
}
.showanim{
    animation: show1 1s ease;
}

.pfp-cont {
    z-index: 1;
  width: 20vh;
  height: 20vh;
  overflow: hidden;
  border-radius: 12px;
  border-radius: 100%;
  background-color: black;
  position: fixed;
  top: 10%;
  left: calc(50% - 10vh);
  border: 5px solid rgba(0, 202, 202, 0.588);
box-shadow: 0 0 22px rgba(0, 255, 255, 0.381);
transition: all .3s ease;
  
}

.pfp-cont img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@keyframes show1 {
  0% { transform: translate(-50%, -50%) scale(.9); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}


button{
    color:white;
    min-width: 50px;
    min-height: 50px;
    height: 10vh;
    width: 80%;
    font-size: 4vh;
    background-color: rgb(0,0,0,.1);
    border-radius: 32px;
    transition: all .3s ease;
    border: solid 1px rgb(30,30,30);
    position: relative;
}
button::before{
    position: absolute;
    top: -5px;
    left: -5px;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0);
    border-radius: 32px;
    border: solid 5px white;
    transition: all .2s ease;
}
button:active::before{
    transform: scale(1);
}
button:hover{
        border: 5px solid rgba(0, 202, 202, 0.588);
    box-shadow: 0 0 22px rgba(0, 255, 255, 0.381);
}
button img{
    width: 100%;
    transform: scale(0.8);
    mix-blend-mode: difference;
    pointer-events: none;
    user-select: none;
}

.inp{
    color:white;
    min-width: 50px;
    min-height: 50px;
    height: 10vh;
    width: 80%;
    font-size: 4vh;
    background-color: rgb(0,0,0,.1);
    border-radius: 32px;
    transition: all .3s ease;
    border: solid 1px rgb(30,30,30);
    position: relative;
    user-select: auto;
}
.inp:focus{
    outline: 5px solid rgba(0, 202, 202, 0.588);
    box-shadow: 0 0 22px rgba(0, 255, 255, 0.381);
}
@keyframes wrong{
    0%{transform: translate(-50%, -50%);}
    25%{transform: translate(calc(-50% - 25px), -50%);}
    50%{transform: translate(calc(-50% + 25px), -50%);}
    75%{transform: translate(calc(-50% - 25px), -50%);}
    100%{transform: translate(-50%, -50%) scale(1);opacity: 1;}
}
.wrongpnl{
    animation: wrong 1s ease;
}
.wronginp{
    outline: 5px solid rgba(200, 0, 0, 0.588);
    box-shadow: 0 0 22px rgba(200, 0, 0, 0.381);
}