@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap'); 

*{
    margin: 0;
    padding: 0;
}

body{
    font-family: 'Roboto', sans-serif;
    padding: 30px;
    background-color: #143F6B;
}


h1{
    text-align: center;
    color: #F55353;
    font-size: 50px;
    margin-bottom: 20px;
}

p{
    text-align: center;
    color: #FEB139;
    font-size: 20px;
}


.keys{
    height: 70vh;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.key{
    background-color: #000;
    border: 4px solid #F6F54D;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    height: 80px;
    width: 80px;
    transition: 0.08s;
}

.playing{
    transform: scale(1.1);
    border-color: #F55353;
}

kbd{
    width: 100%;
    text-align: center;
    font-size: 40px;
    cursor: pointer;
    color: #FEB139;
    font-weight: 700;
}

.key p{
    color: #F6F54D;
    font-size: 14px;
}

.footer{
    text-align: center;
    color: aliceblue;
}
.footer a{
    color: aliceblue;
}