body, html {
  margin: 0;
  padding: 0;
  height:100%;
  width: 100%;
  position: relative;
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  color: white;

  background: conic-gradient(
    from 90deg at 50% 50%,
    #5c2487 140deg,
    #a074c2 220deg,
    #0c0c0c 300deg,
    #5c2487 360deg
  );
  overflow-x: hidden;
  overscroll-behavior: none;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("./assets/img/bg-pokeball.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

header {
    position: relative;
    z-index: 1; 
    margin: 16px;
    width: auto;
    height: 85px;
    border-radius: 15px;
    background: linear-gradient(90deg, #151313 0%, #b88cda 100%);
    box-shadow: 0px 4px 4.6px 0px rgba(0, 0, 0, 0.25);
  }


  .header_input{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
  }

  .content_wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 48px;
    padding: 32px 16px;
    margin: 0 auto;
  }

  .d-none {
    display: none !important;
  }

  body.noscroll {
    overflow: hidden;
  }


  .overlay_background {
    position: fixed;
    inset: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
  }