@font-face {
  font-family: 'slkscr';
  src: url('../assets/fonts/slkscr.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  text-align: center;
  font-family: 'slkscr';
  background-color: #61456A;
  color: #fff;
  cursor: default;
  user-select: none;
  font-size: 300%;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 30px;
}

div.container {
  margin: auto;
}

a {
  color: #E2D3E7;
  text-decoration: none;
  display: block;
}
a:visited {
  color: #debce9;
}
a:hover {
  color: #debce9;
}

button {
  position: relative;
  width: 250px;
  height: 70px;
  margin: 42px auto;
  padding: 0 0 0 20px;
  color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.4s ease-in-out;
  background-color: #7b5c85;
  font-family: 'slkscr';
  font-size: 28px;
}
button:active {
  top: 1px;
  box-shadow: none;
}
button:hover,
button:active,
button:focus {
  background-color: #886b92;
}
button .icon {
  width: 24px;
  height: 24px;
  transition: all 0.4s ease-in-out;
  position: absolute;
  left: 20px;
}
button:hover .icon {
  transform: rotate(360deg) scale(1.2);
}

#cat {
  display: block;
  margin: 20px auto;
}

.hidden {
  display: none !important;
}
