@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: grid;
    place-items: center;
    min-height: 100vh;
}

.keyboard {
    display: flex;
    flex-direction: column;
    align-items: center;
}

button {
    background-color: rgba(9, 89, 226, 1);
    border: none;
    display: inline-block;
    padding: .5rem 1rem;
    margin: .3rem;
    font-size: 1.3rem;
    color: #fff;
    width: 1000px;
    height: 50px;
    border-radius: .5rem;
}

.delete,
.shift,
.space {
    text-transform: capitalize;
    background-color: rgba(9, 89, 226, 1);
    border: none;
    padding: .4rem 1rem;
    margin: .1rem;
    font-size: 18px;
    color: #fff;
    width: 440px;
    height: 40px;
    border-radius: .5rem;


}

.delete {
    width: 200px;
}

.shift {
    width: 200px;
}

.textarea {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

textarea {
    width: 100%;
    height: 150px;
    resize: none;
    padding: .5rem;
    font-size: 1.2rem;
    outline: none;
    border: 2px solid rgba(9, 89, 226, 1);
    border-radius: .5rem;
}


.upper {
    text-transform: uppercase;
}

.tom {
    background-color: rgba(9, 89, 226, 1);
    border: none;
    padding: .4rem 1rem;
    margin: .1rem;
    font-size: 14px;
    color: #fff;
    width: 30px;
    height: 40px;
    border-radius: .2rem;

}

.btn {
    font-size: 0.5cm;
    width: 80px;
    height: 40px;
}