body {
    background-image: url('/static/bg.jpg');
    background-size: cover;
    background-position: center;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    text-align: center;
}

.content {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

button {
    margin: 10px;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

p {
    margin-top: 20px;
    font-size: 16px;
}
body {
    background-image: url('/static/bg.jpg');
    background-size: cover;
    background-position: center;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    text-align: center;
}

.content {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

button {
    margin: 10px;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

p {
    margin-top: 20px;
    font-size: 16px;
}

.content.neutral {
    background: rgba(255, 255, 255, 0.8);
}

.content.wrong {
    background: rgba(255, 100, 100, 0.8);
}

.name {
    font-size: 8vw;
    max-font-size: 80px;
    font-weight: bold;
    margin: 10px 0;
    word-wrap: break-word;
    animation: bounce 0.8s ease;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}


