* {
  user-select: none;
  transition-delay: 0.1s;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}

p {
  font-size: 30px;
  text-align: center;
  cursor: pointer;
  color: black;
  user-select: text;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}

.dark {
  text-shadow: -2px 2px 3px rgba(255, 255, 255, 0.2);
}

.light {
  text-shadow: -2px 2px 3px rgba(0, 0, 0, 0.3);
}

body {
  background-color: white;
  justify-content: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.container {
  display: flex;
  flex-wrap: wrap;
  outline: none;
  justify-content: center;
}

.btn {
  height: 60px;
  width: 200px;
  color: black;
  font-size: large;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  margin: 1em;
  cursor: grab;
  border-radius: 10px;
  background-color: white;
  box-shadow: 1px 1px 3px #000000c0, -1px -1px 3px #ffffffd2;
  letter-spacing: 2px;
}

.btn:active {
  cursor: grabbing;
}

@media (max-width: 960px) {
  p {
    font-size: 24px;
  }

  .btn {
    height: 50px;
    width: 180px;
    margin: 1em;
    letter-spacing: 2px;
  }
}
