@import url('https://fonts.googleapis.com/css2?family=Muli&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: 'Muli', sans-serif;
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: aliceblue;
    text-align: center;
}

.key {
    border: 1px solid #ccc;
    background-color: #eee;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
    padding: 20px;
    margin: 10px;
    font-weight: bold;
    min-width: 150px;
    position: relative;
    border-radius: 5px;
}

.key small {
    position: absolute;
    top: -24px;
    left: 0;
    text-align: center;
    width: 100%;
    color: lightslategray;
    font-size: 14px;
}