@import url('https://fonts.googleapis.com/css2?family=Poppins');
* {
    box-sizing: border-box;
}


/* Some styling for look & feel of the webpage */

body {
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e1e1e2;
    text-align: center;
}

.key {
    border: 1px solid #999;
    background-color: #eee;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    padding: 20px;
    flex-direction: column;
    margin: 10px;
    font-weight: bold;
    min-width: 150px;
    position: relative;
}

.key small {
    position: absolute;
    top: -30px;
    left: 0;
    text-align: center;
    width: 100%;
    color: #555;
    font-size: 16px;
}