/* Font definitions */
@font-face {
    font-family: 'Arial Rounded MT Bold';
    src: url('/Arial-Rounded-MT-Bold-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    font-family: 'Lavishly Yours', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
}

body {
    
    min-height: 100vh;
    background: url('/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    line-height: 1.5;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#username {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 10px;
    height: 50px; /* Explicit height for better control */
}
