/* Credit SHXCAT @ Github. Version 19-11-24/18-09 */
/* Dono't Use/Edit/Distribute this code! */

body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#game-container {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #333;
}

#word-display {
    font-size: 24px;
    color: #0078d7;
    margin: 20px 0;
}

#input-field {
    font-size: 18px;
    padding: 10px;
    width: 80%;
    border: 2px solid #ccc;
    border-radius: 4px;
}

#start-btn {
    background-color: #0078d7;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    transform: translateY(10px);
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#start-btn:hover {
    background-color: #005fa3;
}

#score-display {
    margin-top: 20px;
    font-size: 18px;
    color: #333;
}
#version-id {
    position: fixed;
    bottom: 24px;
    right: 10px;
    font-size: 14px;
    color: #666;
}
#version-id2 {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 14px;
    color: #666;
}
.links * {
    text-decoration: none;
    color:black;
    /*make a rounded background, like a button*/
    background-color: #88a8ff;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    padding-top:5px;
    border: 0.1rem solid #88a8ff;
}