*{ /* crazy shi */
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    forced-color-adjust: none;
    touch-action: manipulation;
    overflow: hidden;
    font-family: Sour;
}

@font-face {font-family: 'Sour'; src: url('/fonts/sourgummyvariable.ttf');}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100svh;
    background-color: #000000;
}

body::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/icons/balls.png');
    background-size: 200px;
    opacity: 0.1;
    z-index: -1;
    background-position: center;
}

span{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding-right: 10px;
}

h3{
    color: white;
    opacity: 0.5;
    font-weight: normal;
    margin-top: -5px;
    margin-bottom: 10px;
    font-size: 20px;
}

img{
    height: 70px;
}

div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: rgba(0, 0, 0, 0.192);
    padding: 50px;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    text-align: center;
    max-width: 250px;
}

a, button{
    border: none;
    background-color: #222;
    color: white;
    padding: 15px 0;
    font-size: xx-large;
    text-decoration: none;
    border-radius: 1rem;
    transition: 0.05s;
    width: 250px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}



button img{
    height: 30px;
    margin: 0;
    padding-right: 12px;
}

button[hidden] {
    display: none !important;
  }

a:hover, button:hover{
    background-color: #333;
}

a:active, button:active{
    background-color: #1a1a1a;
}

@view-transition{
    navigation: auto;
}