body {
    background-color: #f0f0f0;
}

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

.logo-img {
    height: 50px;
    width: 170px;
    margin-bottom: 50px;
}

.keyboard {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.title {
    display: flex;
    width: 50%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 30%;
}

.clicked {
    color: #fff !important;
    background-color: #13395f !important;
    border-color: #13395f !important;
    opacity: 1 !important;
}

.word-field {
    width: 50%;
    padding: 30px;
    margin-bottom: 25px;
    background-color: #8d99ca;
    border-radius: 20px;
    text-align: center;
}

span {
    font-size: 30px;
}

.buttons {
    display: flex;
    justify-content: space-between;
    width: 50%;
    gap: 20%;
}