body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
    margin: 0;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}


#end {
    position: absolute;
    width:400px;
    height: 170px;
    left: calc(50% - 200px);
    top: calc(50% - 85px);
    border: 3px;
    border-style: solid;
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: white;
    z-index: 1;
    border-radius: 6px;
    font-size: larger;
}

#shareButton {
    width: 200px;
    height: 75px;
    background-color: rgb(0, 145, 19);
    left: 100px;
    top: 70px;
    position: absolute;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: x-large;
    color: white;
    cursor: pointer;
}
#copyConfirm {
    position: absolute;
    width: 250px;
    height: 50px;
    left: calc(50% - 125px);
    top: 20%;
    border: 1px;
    border-style: solid;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 6px;
    z-index: 1;
}

#nice {
    position: absolute;
    width: 100px;
    height: 50px;
    left: calc(50% - 50px);
    top: 16%;
    border: 1px;
    border-style: solid;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 6px;
    z-index: 1;
}

#container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#topBit {
    align-items: center;
    display: flex;
    justify-content: center;
}

#game, .keyboardRow {
    align-items: center;
    display: flex;
    justify-content: center;
    font-weight: bold;
    width: 100%;
}

#game {
    flex-direction: column;
    margin-top: 5px;
    margin-bottom: 50px;
}

#guess {
    width: 80px;
    height: 80px;
    background-color: white;
    border-color: gray;
    border-style: solid;
    border-width: 2px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.guess-wrong {
    width: 80px;
    height: 80px;
    background-color: gray;
    color: white;
    border-style: solid;
    border-width: 2px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 50px;
    margin-bottom: 10px;
}

.guess-right {
    width: 80px;
    height: 80px;
    background-color: green;
    color: white;
    border-style: solid;
    border-width: 2px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 50px;
    margin-bottom: 10px;
}

.number {
    width: 40px;
    height: 53px;
    background-color: lightgray;
    color: black;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    margin: 3px;
    font-size: 30px;
    cursor: pointer;
}

@media only screen and (max-width: 550px) {
    /* For mobile phones: */
    .number {
        width: 9% !important;
        height: 53px;
    }
}

.number-wrong {
    width: 40px;
    height: 53px;
    background-color: gray;
    color: white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    margin: 3px;
    font-size: 30px;
    cursor: pointer;
}

.number-right {
    width: 40px;
    height: 53px;
    background-color: green;
    color: white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    margin: 3px;
    font-size: 30px;
    cursor: pointer;
}

#endbit {
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.5;
}