.options {
    font-size: 50px;
    width: 100px;
    height: 100px;
    text-align: center;
    border: 1px solid black;
    border-radius: 5px;
    font-weight: bold;
    margin: 300px 150px;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot {
    font-size: 8px;
    width: 10px;
    height: 10px;
    background-color: silver;
    border-radius: 30px;
    position: fixed;
}

.correct {
    color: green;
}

.inSquare {
    background-color: purple;
}



#results {
    width: 600px;
    position: fixed;
    top: 10px;
    left: 50px;
}

#details {
    font-size: 14px;
    text-align: left;
}


#mouseCoordinates {
    position: fixed;
    top: 0;
    right: 0;
    background-color: #eee;
    padding: 10px;
    width: 100px;
    text-align: center;
}