@import url("https://fonts.googleapis.com/css2?family=Muli&display=swap");
* {
    box-sizing: border-box;
}
body {
    background-color: #fabf72;
    font-family: "Muli", sans-serif;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

.key {
    border: 1px solid rgb(215, 118, 0);
    background-color: rgb(255, 164, 94);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;    
    font-size: 20px;
    font-weight: bold;
    padding: 20px;
    flex-direction: column;
    margin: 10px;
    min-width: 150px;
    position: relative;
}

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