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

#controlButtons, #restartContainer, #instructions {
    width: 100%;
    text-align: center;
    padding: 10px 0;
}

ul {
  list-style-type: none;
}


.translation {
    margin: 10px;
    font-size: 24px;
}

.cover {
    background-color: white;
    color: white;
    cursor: default;
    transition: background-color 0.3s ease;
}

.cover:hover {
    background-color: white;
}

.revealed {
    background-color: transparent;
    cursor: text;
	color: #4284f5;
}

.correct {
    color: #00a67d;
}

.incorrect {
    color: #ee0000;
}

#endContainer { 
 font-size: 24px;
	opacity: 0;
	display: none;
}

#translationsContainer {
    -webkit-user-select: none; 
    -moz-user-select: none;
    -ms-user-select: none; 
    user-select: none;
    padding-bottom: 100px;
}

#spacer {
    display: none; 
}

@media (max-width: 768px) { 
    #spacer {
        display: block;
        height: 100px;
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: #212121;
        z-index: 1000; 
    }
}