* {
  scroll-behavior: smooth;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background: #000;
}

.center {
  text-align: center;
}

.header {
  padding-top: 1rem;
  padding-bottom: 1.25rem;
  font-size: 1.75rem;
  background: black;
  color: rgb(182, 161, 161);
}

.header>p {
  font-family: 'Special Elite', cursive;
}

#title {
  margin: 10px;
  font-size: 4.5rem;
  font-family: 'Londrina Outline', cursive;
}

.catos {
  font-family: 'Amatic SC', cursive;
  background-position: center;
  background-size: cover;
  padding-top: 12rem;
  padding-bottom: 12rem;
  color: rgb(0, 0, 0);
  overflow-x: hidden;
  overflow-y: hidden;
  filter: grayscale(100%);

  -webkit-transition: all 300ms ease-in;
  -o-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  transform: scale(1);

}

.catos>span:hover {
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  transform: scale(2);
  cursor: pointer;

}

.catos:hover {
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  transform: scale(1.08);
  filter: grayscale(0);
  filter: saturate(150%);
  /* filter: sepia(10%); */

}

.cath {
  display: table;
  margin: 0 auto;
  font-weight: bold;
  font-size: 4.5rem;
  -webkit-transition: all 300ms ease-in;
  -o-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
}

.footer {
  text-decoration: none;
  font-family: 'Amatic SC', cursive;
  font-size: 2rem;
  letter-spacing: 2px;
  text-align: center;
  bottom: 0;
  padding-top: 2rem;
  padding-bottom: 1rem;
}
a{
  text-decoration: none;
  color: white;
}
.footer:hover{
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  transform: scale(1.2);
}