@font-face {
    font-family: 'TeenyTiny';
    src: url('../font/TeenyTiny.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Add this line to prevent FOUC */
}

body {
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    overflow: hidden; /* Hide overflow from static/flicker effects */
    font-family: 'TeenyTiny', sans-serif; /* Using the imported TeenyTiny font */
}

.text-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center; /* Center horizontally */
    gap: 5px; /* 5px gap between h1 and p */
}

h1 {
    font-size: 28px;
    margin-top: 0;
    text-align: center;
    position: relative;
    z-index: 1;
    transform: translateY(-80px); /* Move text up by 80px */
}

p {
    color: white; /* Changed from rgb(107, 114, 128) */
    font-size: 12px;
    margin-bottom: 10px;
    margin-top: 5px;
    font-family: sans-serif;
}

.card {
    max-width: 620px;
    margin: 0 auto;
    padding: 16px;
    border: none; /* Removed border */
    border-radius: 0; /* Removed border-radius */
}

.card p:last-child {
    margin-bottom: 0;
}
