#card {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 7%;
}
body {
  background-color: rgb(254, 250, 224);
  margin-left: 15%;
  margin-right: 15%;
}

#title {
  display: flex;
  font-family: 'Concert One', sans-serif;
  overflow: hidden;
  align-self: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 7%;
}
#evil-button {
  font-family: 'Concert One';
  display: flex;
  align-self: center;
  margin-top: 2%;
}

h1 {
  text-align: center;
  color: rgb(212, 153, 115);
  font-size: 4em;
  margin: 3px;
}
.moe {
  position: relative;
  height: 40px;
  width: 70%;
  top: -70px;

  color: rgb(254, 250, 224);
  font-size: 4em;
  text-decoration-style: wavy;
  text-decoration-color: rgb(204, 213, 174);
  text-decoration-line: underline;
  animation: animate 1s linear infinite;
}
@keyframes animate {
  0% {
    left: -5%;
  }
  100% {
    left: 0%;
  }
}

a {
  text-decoration: none;
}

img {
  height: 400px;
  width: 300px;
  float: left;
  margin: 20px;
  clip-path: circle();
}
#aboutme {
  align-self: flex-start;
  margin-top: 75px;
  font-family: 'concert one', sans-serif;
  color: rgba(212, 153, 115);
}

button {
  all: unset;
}

.button {
  position: relative;
  display: inline-flex;
  height: 3.5rem;
  align-items: center;
  border-radius: 9999px;
  padding-left: 2rem;
  padding-right: 2rem;
  font-family: 'Concert One', sans-serif;
  font-size: 1.2rem;
  font-weight: 640;
  color: #fafaf6;
  letter-spacing: -0.06em;
}

.button-item {
  background-color: transparent;
  color: #1d1d1f;
}

.button-item .button-bg {
  border-color: rgba(204, 213, 174);
  background-color: rgba(204, 213, 174);
}

.button-inner,
.button-inner-hover,
.button-inner-static {
  pointer-events: none;
  display: block;
}

.button-inner {
  position: relative;
}

.button-inner-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(70%);
}

.button-bg {
  overflow: hidden;
  border-radius: 2rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: transform 1.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.button-bg,
.button-bg-layer,
.button-bg-layers {
  display: block;
}

.button-bg-layers {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: -60%;
  aspect-ratio: 1 / 1;
  width: max(200%, 10rem);
}

.button-bg-layer {
  border-radius: 9999px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
}

.button-bg-layer.-pink {
  background-color: rgba(251, 196, 171);
}

.button-bg-layer.-brown {
  background-color: rgba(212, 163, 115);
}

.button-bg-layer.-green {
  --tw-bg-opacity: 1;
  background-color: rgba(204, 213, 174, var(--tw-bg-opacity));
}

.button:hover .button-inner-static {
  opacity: 0;
  transform: translateY(-70%);
  transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s linear;
}

.button:hover .button-inner-hover {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.button:hover .button-bg-layer {
  transition: transform 1.3s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s linear;
}

.button:hover .button-bg-layer-1 {
  transform: scale(1);
}

.button:hover .button-bg-layer-2 {
  transition-delay: 0.1s;
  transform: scale(1);
}

.button:hover .button-bg-layer-3 {
  transition-delay: 0.2s;
  transform: scale(1);
}
