*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  width: 100vw;
  min-height: 100vh;
  color: #a0ffd0;
  background-color: #1E1E2E;
}

.navbar {
  margin: 0 auto;
  min-height: 20vh;
  max-width: 1080px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title {
  font-size: 4rem;
  font-family: 'Baloo 2', cursive;
  font-weight: bold;
}

.container {
  margin: 0 auto;
  min-height: 70vh;
  max-width: 1080px;
  display: grid;
  place-items: center;
}

.keys-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.key {
  background-color: #ffffff22;
  width: 120px;
  height: 120px;
  border-radius: 10px;
  box-shadow: 4px 4px #e0ffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-family: 'Baloo 2', cursive;
  transition: 0.1s;
}

/* .key:hover { */
/*   transform: translate(4px,4px); */
/*   box-shadow: none; */
/* } */

.key-pressed {
  transform: translate(4px,4px);
  box-shadow: none;
}

.key-name {
  font-family: 'Sansita Swashed', cursive;
  font-size: 4rem;
}
