:root {
  --cinza: #464646;
  --azul: #a9d3ff;
  --azul-escuro: #7ab6f5;
  --preto: #303030;
  --branca: #fff;
  --luz: rgb(245, 248, 222);
}

body {
  align-items: center;
  background: url(../images/background.png) repeat;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-family: 'Orbitron', sans-serif;
  min-height: 100vh;
}

h1 {
  color: var(--branca);
  margin-bottom: 20px;
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
}

#icon {
  height: 2rem;
  padding-left: 8px;
}

.teclado {
  background: linear-gradient(to bottom, rgba(255,0,0,0) 0%, rgba(28,93,153,1) 100%);
  box-shadow: 6px 8px 0 6px rgba(102, 102, 102, 0.5), 10px 10px 10px #000;
  border-radius: 30px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  padding: 10px;
}

.tecla {
  background-color: var(--preto);
  border-radius: 30px;
  box-shadow: 3px 3px 0 var(--cinza);
  color: var(--azul);
  cursor: pointer;
  height: 120px;
  font-size: 1.75em;
  font-weight: bold;
  line-height: 120px;
  text-align: center;
  width: 120px;
}

.tecla.ativa,
.tecla:active {
  background-color: var(--azul);
  border: 4px solid  var(--azul);
  box-shadow: 3px 3px 0 var(--azul-escuro) inset;
  color: var(--preto);
  outline: none;
}

.tecla.focus,
.tecla:focus {
  outline: none;
  box-shadow: 1px 1px 10px var(--luz);
}

.tecla.ativa:focus,
.tecla:active:focus {
  box-shadow: 3px 3px 0 var(--azul-escuro) inset, 1px 1px 10px var(--luz);
}
