@font-face {
    font-family: 'ProggyTiny';
    src: url('fonts/ProggyTiny.ttf') format('truetype');
}


body {
    background: #0b0b0b;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center; 
}

.game-button {
    font-family: 'ProggyTiny', monospace;
    font-size: 14px;
    color: #dcdcdc;

    width: 160px;
    padding: 8px;

    text-align: center;      
    text-decoration: none;   
    display: inline-block;   

    cursor: pointer;
    border: 1px solid #2a2a2a;

    background: 
        linear-gradient(to bottom, #2a2a2a, #111111),
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,0.02) 0px,
            rgba(255,255,255,0.02) 2px,
            transparent 2px,
            transparent 4px
        );

    box-shadow:
        inset 0 1px 0 #3a3a3a,
        inset 0 -1px 0 #000000,
        0 0 0 1px #000;

    position: relative;
}

.game-button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #5a00cc, #a020ff);
}

.game-button:hover {
    color: #ffffff;
    background: linear-gradient(to bottom, #333, #151515);
}

.game-button:active {
    box-shadow:
        inset 0 2px 4px rgba(0,0,0,0.8),
        0 0 0 1px #000;
}

.corner-bird {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 72px;       
    height: auto;
    pointer-events: none;
    user-select: none;
    image-rendering: pixelated;
}