@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: whitesmoke;
    width: 100%;
    height: 100%;
}

header {
    width: 100%;
    padding: 5px 0;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-family: 'Poppins', sans-serif;
    color: #161616;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
}

header h2, header a h2 {
    font-family: 'Poppins', sans-serif;
    color: #161616;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    text-decoration: underline;
    margin: 0 15px;
}

header a h2:hover {
    cursor: pointer;
    opacity: 0.8;
}

center {
    margin-top: 80px;
    width: 100%;
}

center .gameBtn {
    width: 280px;
    height: 280px;
    border-radius: 10px;
    box-shadow: 0 0 5px 8px #c6c6c6;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: ease-in-out 300ms;
}

center .gameBtn:hover {
    cursor: pointer;
    box-shadow: 0 0 8px 2px #2672ff;
}

center .gameBtn:active {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

center .gameBtn img {
    width: 250px;
    height: 250px;
}

.texts {
    margin-top: 25px;
    width: 100%;
}

.texts .anText {
    color: #262626;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 10px auto;
    text-align: center;
}

.texts .anText .anNum {
    color: #262626;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin: 10px auto;
    text-align: center;
}

center .musicBox {
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #262626;
}

center .shop {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 3rem;
    flex-wrap: wrap;
}

center h1 {
    margin-top: 60px;
    text-align: center;
    color: #262626;
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
}

center .shop article {
    display: flex;
    flex-direction: column;
    width: 240px;
    height: 320px;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

center .shop article img {
    width: 210px;
    height: 210px;
    border-radius: 10px;
}

center .shop article p {
    color: #161616;
    font-family: monospace;
    font-size: 16px;
}

/* center .shop article button {
    border-radius: 5px;
    color: white;
    background-color: #4285F4;
    text-align: center;
    padding: 8px 8px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    width: fit-content;
    justify-self: center;
    margin: auto;
}

center .shop article button:hover {
    cursor: pointer;
    opacity: 0.9;
    background-color: #2a68cb;
} */
.bn5 {
    padding: 0.6em 2em;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    width: fit-content;
    margin: 0 auto;
  }
  
  .bn5:before {
    content: "";
    background: linear-gradient(
      45deg,
      #ff0000,
      #ff7300,
      #fffb00,
      #48ff00,
      #00ffd5,
      #002bff,
      #7a00ff,
      #ff00c8,
      #ff0000
    );
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowingbn5 20s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
  }
  
  @keyframes glowingbn5 {
    0% {
      background-position: 0 0;
    }
    50% {
      background-position: 400% 0;
    }
    100% {
      background-position: 0 0;
    }
  }
  
  .bn5:active {
    color: #000;
  }
  
  .bn5:active:after {
    background: transparent;
  }
  
  .bn5:hover:before {
    opacity: 1;
  }
  
  .bn5:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #191919;
    left: 0;
    top: 0;
    border-radius: 10px;
  }