body {
    background-color: #000;
    color: white;
}

html,
body {
    height: 100%;
    margin: 0;
    user-select: none;
    transition: .3s;
}

.app {
    height: 100%;
    transition: .3s;
}

.appContainer {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: .3s;
}

.appNav {
    display: flex;
    width: 100%;
    background-color: #151515;
    height: 80px;
    align-items: center;
    justify-content: flex-end;
    transition: .3s;
}

.appMain {
    height: 100%;
    width: 100%;
    display: flex;
    transition: .3s;
}

.balance {
    margin-right: 25px;
    background-color: gray;
    padding: 12px;
    cursor: pointer;
    border-radius: .5rem;
    transition: .3s;
}

.left {
    background-color: #272727;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 30%;
    transition: .3s;
}

.input {
    background-color: #000;
    border-radius: .5rem;
    outline: none;
    border: none;
    padding: 16px 25px;
    width: 180px;
    color: white;
    transition: .3s;
}

.button {
    background-color: #000;
    outline: none;
    border: none;
    padding: 16px 25px;
    border-radius: .5rem;
    cursor: pointer;
    color: white;
    transition: .3s;
}

.right {
    width: 70%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.tiles {
    display: flex;
    width: 85%;
    height: calc(167px * 5);
    /* background-color: rgb(42, 42, 42); */
    flex-direction: column;
    align-items: center;
    opacity: 0.5;
    transition: .3s;
}

.tiles-row {
    display: flex;
    transition: .3s;
}

.tile {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(53, 53, 53);
    border-radius: .5rem;
    width: 135px;
    height: 135px;
    margin: 16px;
    cursor: pointer;
    transition: .3s;
}

.tile-diamond {
    background-color: rgb(0, 52, 0);
    transition: .3s;
}

.tile-bomb {
    background-color: rgb(52, 0, 0);
    transition: .3s;
}