@font-face {
    font-family: 'Minecraft';
    src: url('./minecraft.otf') format('opentype');
}

.container {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    font-family: 'Minecraft', monospace;
}

.output {
    font-weight: bold;
    padding: 10px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    margin-top: 10px;
}

#colors div.color-choice {
    display: inline-block;
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin: 2px;
    border: 1px solid #000;
}

.name-input {
    border: 2px solid #ccc;
    min-height: 50px;
    margin: 20px auto;
    padding: 10px;
    width: 80%;
    display: block;
    background-color: #f9f9f9;
}

.glitch-effect {
    animation: glitch-animation 1s step-start infinite;
}

@keyframes glitch-animation {
    50% { opacity: 100; }
}