@font-face {
  font-family: SpaceRanger;
  src: url('./font/SpaceRanger-EMJl.otf');
}

body {
  color: white;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  position: relative;
}

nav {
  z-index: 1;
  background-color: #000;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  padding-top: 1rem;
  padding-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 6rem;
}

select {
  margin: auto;
  display: block;
  width: 200px;
  height: 40px;
  margin-top: 20px;
}

h1 {
  font-size: 2em;
  background: -webkit-linear-gradient(left, #fc1c81 , #5eedfe);
  background: -o-linear-gradient(right, #fc1c81, #5eedfe);
  background: -moz-linear-gradient(right, #fc1c81, #5eedfe);
  background: linear-gradient(to right, #fc1c81 , #5eedfe); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: SpaceRanger;
  height: 80px;
}

h1 {
  margin: auto;
  width: min-content;
  text-align: center;
}

h2 {
  margin: auto;
  text-align: center;
  font-size: 20px;
  text-transform: uppercase;
  font-family: 'Goldman', sans-serif;
}

h3 {
  margin-bottom: 0;
  font-family: 'Goldman', sans-serif;
  text-align: center;
}

.mint-modal {
  box-shadow: 0px 0px 20px 0px #fc1c81, inset 0px 0px 20px 0px #fc1c81;
  border: 1px solid #ff499b;
  border-radius: 8px;
  width: 100%;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 10px;
  padding-bottom: 40px;
}

.mint-modal p {
  color: rgba(156,163,175,1);
  margin-top: 20px;
}

.mint-modal > div {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mint-modal .mint-control {
  background-color: #000;
  box-shadow: 0px 0px 15px 0px #fff, inset 0px 0px 15px 0px #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: white;
  font-family: 'Goldman', sans-serif;
  font-size: 20px;
  cursor: pointer;
}

.mint-modal strong {
  font-size: 50px;
  margin-left: 30px;
  margin-right: 30px;
}

.mint-price {
  color: rgba(156,163,175)
}

button.primary {
  border: none;
  background: linear-gradient(to right, #fc1c81 , #5eedfe);
  font-family: SpaceRanger;
  font-size: 28px;
  box-shadow: 1px -1px 27px -1px rgba(255,255,255,0.5);
  -webkit-box-shadow: 1px -1px 27px -1px rgba(255,255,255,0.5);
  -moz-box-shadow: 1px -1px 27px -1px rgba(255,255,255,0.5);
  width: 16rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 2rem;
  color: #fff;
  cursor: pointer;
}

button.primary:hover {
  box-shadow: 1px -1px 42px -1px rgba(255,255,255,0.5);
  -webkit-box-shadow: 1px -1px 42px -1px rgba(255,255,255,0.5);
  -moz-box-shadow: 1px -1px 42px -1px rgba(255,255,255,0.5);
}

.connect {
  margin: auto;
  display: block;
}

.connect-wc, .connect-metamask {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 270px;
  height: 40px;
  border: 2px solid grey;
  border-radius: 12px;
  font-family: 'Goldman', sans-serif;
  margin-top: 10px;
}

.progress-bar {
  width: 40%;
  height: 10px;
  border-radius: 5px;
  background-color: #444;
  margin: auto;
  margin-top: 10px;
}

.progress {
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(to right, #fc1c81 , #5eedfe);;
}

@media (min-width: 768px) {
  h1 {
    font-size: 72px;
  }

  nav {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .mint-modal {
    width: 50%;
  }
}