@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  box-sizing: border-box;
  padding: 0;
}
body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    flex-direction: column;
    background: #dde1e7;
}
.container{
    width: 60%;
}
.container .wrapper{
    min-width: 750px;
    max-width: 1000px;
    border-radius: 10px;
    padding: 25px;
    background: #dde1e7;
    box-shadow: -3px -3px 7px #ffffff73,
                2px 2px 5px rgba(94,104,121,0.288);
}
.wrapper .keys{
    display: flex;
    justify-content: center;
}
.wrapper .keys input{
    height: 50px;
    min-width: 50px;
    padding: 10px;
    outline: none;
    border: none;
    margin: 10px;
    border-radius: 5px;
    font-size: 20px;
    color: grey;
    text-transform: uppercase;
     background: #dde1e7;
    box-shadow: -3px -3px 7px #ffffff73,
                2px 2px 5px rgba(94,104,121,0.288);
}
.wrapper .keys input:active{
    color: #3498db;
    font-size: 19px;
    box-shadow: inset -3px 7px #ffffff73,
                inset 2px 5px rgba(94,104,121,0.288);
}
.wrapper .keys input[value="space"]{
    width: 60%;
}
.wrapper .display{
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
    user-select: none;
}
.wrapper .display textarea{
    height: 100%;
    width: 100%;
     color: #3498db;
    border: none;
    outline: none;
    border-radius: 10px;
    resize: none;
    font-size: 20px;
    padding: 10px 15px;
    background: #dde1e7;
    pointer-events: none;
    box-shadow: inset -3px 7px #ffffff73,
                inset 2px 5px rgba(94,104,121,0.288);
}
