* {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  padding: 0px;
  margin: 0px;
}

body {
  background: url('../images/drummer-bg.jpg') center/cover;
}

.container {
  background: rgba(44, 44, 44, 0.75);
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  overflow-y: auto;
  display: flex;
  width: 100vw;
}

h1 {
  font-family: 'Comic Sans MS', 'Helvetica', sans-serif;
  margin: 30px 0px;
  font-size: 42px;
  color: #FFF;
}

.keys {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
}

.key {
  background: rgba(255, 255, 255, 0.2);
  transition: 0.07s all ease-in-out;
  border-radius: 5px;
  text-align: center;
  padding: 15px 0px;
  color: #FFF;
  width: 90px;
  margin: 7px;
}
.key.playing {
  box-shadow: 0px 0px 2px 10px rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}
.key:hover {
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.key kbd {
  font-size: 48px;
  display: block;
}

.key span {
  letter-spacing: 2px;
  display: block;
}

p {
  font-family: 'Comic Sans MS', sans-serif;
  margin: 30px 0px;
  color: #FFF;
}

p a { color: #FFF; }