* {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

body {
    background-color: rgb(26, 26, 26);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.box {
    display: flex;
    flex-direction: column;
    width: 900px;
    height: 120px;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.text {
    color: white;
    font-size: 20px;
}

.center_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.keys_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 70px;
    height: 120px;
    gap: 5px;
}

.key {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    border: 3px solid white;
    border-radius: 8px;
    width: 50px;
    height: 50px;
}