* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif; /* Change font family */
}

body {
  background-color: #f5f5f5;
  padding: 20px;
}

.header {
  text-align: center;
  margin-top: 18px;
}

.header button {
  display: block;
  margin: auto;
  margin-bottom: 20px;
  margin-top: 20px;
}

.header p {
  font-size: 18px;
}

.button-container {
  display: flex;
  justify-content: center;
}

.button-link {
  margin: 0 10px; /* Adjust the spacing between buttons */
}

.body img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 190px;
  width: 250px;
}

/* Cool Button */
.cool-button,
.cool-button *,
.cool-button :after,
.cool-button :before,
.cool-button:after,
.cool-button:before {
  border: 0 solid;
  box-sizing: border-box;
}
.cool-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  appearance: button;
  background-color: #000;
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 100%;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  mask-image: radial-gradient(#000, #fff);
  padding: 0;
  text-transform: uppercase;
}
.cool-button:disabled {
  cursor: default;
}
.cool-button:-moz-focusring {
  outline: auto;
}
.cool-button svg {
  display: block;
}
.cool-button [hidden] {
  display: none;
}
.cool-button {
  --tilt: 30px;
  border-width: 1px;
  display: grid;
  padding: 1.2rem 3rem;
  place-content: center;
}
.cool-button,
.cool-button .text-container {
  overflow: hidden;
  position: relative;
}
.cool-button .text-container {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.cool-button .text {
  display: block;
  font-weight: 900;
  mix-blend-mode: difference;
  position: relative;
}
.cool-button:hover .text {
  -webkit-animation: move-right-alternate 0.3s ease forwards;
  animation: move-right-alternate 0.3s ease forwards;
}

@-webkit-keyframes move-right-alternate {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(80%);
  }
  51% {
    transform: translateX(-80%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes move-right-alternate {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(80%);
  }
  51% {
    transform: translateX(-80%);
  }
  to {
    transform: translateX(0);
  }
}
.cool-button:before {
  -webkit-animation: move-out 0.3s ease;
  animation: move-out 0.3s ease;
  background: #fff;
  -webkit-clip-path: polygon(
    0 0,
    calc(100% - var(--tilt)) 0,
    100% 50%,
    calc(100% - var(--tilt)) 100%,
    0 100%
  );
  clip-path: polygon(
    0 0,
    calc(100% - var(--tilt)) 0,
    100% 50%,
    calc(100% - var(--tilt)) 100%,
    0 100%
  );
  content: "";
  height: 100%;
  left: calc(-100% - var(--tilt));
  position: absolute;
  top: 0;
  width: calc(100% + var(--tilt));
}
.cool-button:hover:before {
  -webkit-animation: move-in 0.3s ease forwards;
  animation: move-in 0.3s ease forwards;
}
@-webkit-keyframes move-in {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes move-in {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
@-webkit-keyframes move-out {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(200%);
  }
}
@keyframes move-out {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(200%);
  }
}

.face {
  width: 200px;
  height: 200px;
}
