* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI";
}

body {
  background-color: #b1b1b1;
}
body a {
  outline: none;
}

header h1 {
  color: #000;
  letter-spacing: 2px;
  font-weight: 400;
  margin: 5%;
  text-align: center;
}

.container {
  width: 90%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 5%;
}
.container .btn {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 12px 0;
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: #000;
  border: 1px solid #0071bd;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  overflow: hidden;
}
@media screen and (max-width: 500px) {
  .container .btn {
    font-size: 16px;
  }
}
.container .btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #0071bd;
  transition: all 0.5s;
  z-index: -1;
}
.container .btn-item-1::before {
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
}
.container .btn-item-1:hover::before {
  width: 100%;
}
.container .btn-item-2::before {
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
}
.container .btn-item-2:hover::before {
  width: 100%;
}
.container .btn-item-3::before {
  width: 100%;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.container .btn-item-3:hover::before {
  height: 535%;
}
.container .btn-item-4::before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}
.container .btn-item-4:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.container .btn-item-5::before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.container .btn-item-5:hover::before {
  transform: scaleX(1);
  transform-origin: right;
}
.container .btn-item-6::before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s ease;
}
.container .btn-item-6:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}
.container .btn-inter {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 12px 0;
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: #000;
  border: 1px solid #0071bd;
  cursor: pointer;
  text-decoration: none;
  outline: none;
}
@media screen and (max-width: 500px) {
  .container .btn-inter {
    font-size: 16px;
  }
}
.container .btn-item-7:hover {
  background: #730bec url(../image/pixel.png);
  background-size: 100%;
  transition-delay: 1s;
  animation: animation-1 1s steps(10) forwards;
}
.container .btn-item-8::before {
  content: "";
  width: calc(100% + 2px);
  height: calc(100% - 12px);
  position: absolute;
  top: 5px;
  left: -1px;
  background-color: #b1b1b1;
  transition: 0.5s ease-in-out;
  transform: scaleY(1);
}
.container .btn-item-8:hover::before {
  transform: scaleY(0);
}
.container .btn-item-8::after {
  content: "";
  width: calc(100% - 12px);
  height: calc(100% + 4px);
  position: absolute;
  top: -2px;
  left: 6px;
  background-color: #b1b1b1;
  transition: 0.5s ease-in-out;
  transform: scaleX(1);
}
.container .btn-item-8:hover::after {
  transform: scaleX(0);
}
.container .btn-item-8 span {
  position: relative;
  z-index: 3;
}
.container .btn-item-9 {
  position: relative;
  overflow: hidden;
  transition: 0.2s;
}
.container .btn-item-9:hover {
  color: #fff;
  background: #0071bd;
  box-shadow: 0 0 10px #0071bd, 0 0 15px #0071bd, 0 0 30px #0071bd;
  transition-delay: 1s;
}
.container .btn-item-9 span {
  position: absolute;
  display: block;
}
.container .btn-item-9 span:nth-child(1) {
  width: 100%;
  height: 2px;
  top: 0;
  left: -100%;
  background: linear-gradient(90deg, transparent, #0071bd);
}
.container .btn-item-9 span:nth-child(2) {
  width: 2px;
  height: 100%;
  right: 0;
  top: -100%;
  background: linear-gradient(180deg, transparent, #0071bd);
}
.container .btn-item-9 span:nth-child(3) {
  width: 100%;
  height: 2px;
  bottom: 0;
  right: -100%;
  background: linear-gradient(270deg, transparent, #0071bd);
}
.container .btn-item-9 span:nth-child(4) {
  width: 2px;
  height: 100%;
  left: 0;
  bottom: -100%;
  background: linear-gradient(360deg, transparent, #0071bd);
}
.container .btn-item-9:hover span:nth-child(1) {
  left: 100%;
  transition: 1s;
}
.container .btn-item-9:hover span:nth-child(2) {
  left: 100%;
  transition: 1s;
  transition-delay: 0.25s;
}
.container .btn-item-9:hover span:nth-child(3) {
  right: 100%;
  transition: 1s;
  transition-delay: 0.5s;
}
.container .btn-item-9:hover span:nth-child(4) {
  right: 100%;
  transition: 1s;
  bottom: 100%;
  transition: 1s;
  transition-delay: 0.75s;
}

@keyframes animation-1 {
  0% {
    background-position-y: 0;
  }
  100% {
    background-position-y: -480px;
  }
}
footer {
  position: absolute;
  bottom: 0;
  padding: 15px;
  display: flex;
  justify-content: center;
  width: 100%;
}
footer p {
  display: flex;
  flex-flow: column;
  text-align: center;
  gap: 10px;
}
footer p a {
  text-decoration: none;
  outline: none;
  font-size: 20px;
  font-weight: bold;
  color: black;
}

/*# sourceMappingURL=style.css.map */
