/* FONTS */

@import url("https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
/* GLOBAL STYLES */

:root {
  --font-primary: 'Press Start 2P', cursive;
  --font-secondary: 'Press Start 2P', cursive;
  --font-code: 'Roboto', monospace;
  --bg-color: #83e9e7;
  --font-color: #ffffff;
  --btn-bg-color: #ffffff;
  --accent-color: #000;
  --header-shadow: #000 0px 0px 5px;
}

a {
  color: #000;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

h3 {
  padding-top: 4rem;
}

h5 {
  margin-bottom:0% !important;
}

body {
  background-color: #83e9e7 !important;
  display: flex;
  flex-flow: column;
  height: 100vh;
  color: var(--font-color);
  font-family: var(--font-primary);
}

.container {
  display: flex;
  flex-direction: column;
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

/* HEADER */



header .container {
  display: row;
  justify-content: space-between;
  align-items: center;


}
.hero {
  padding-top: 25px;
  max-width: 100%;
}


.logo {
  margin: 1rem;
  justify-content: space-evenly;
}
.menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  color: #000;
}

.mainLogo {
  padding-right: 18rem
}
/* BUTTONS */

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--btn-bg-color);
  color: var(--accent-color);
  font-family: var(--font-secondary);
  font-style: italic;
  font-weight: bold;
  font-size: 1rem;
  text-transform: capitalize;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0 0 var(--accent-color);
  cursor: pointer;
  position: relative;
  text-decoration: none;
  outline: none;
}
.btn:hover {
  box-shadow: none;
}

.wallet-btn {
  border-radius: 5rem;
  margin-left: 2rem;
  border-color: transparent;
}

.hero-btn {
  border-radius: 4px;
  font-size: 1.2rem;
  padding: 1.5rem 3rem;
}

.notice {
  max-width: 50%;
}


.mint-btn {
  padding: 3rem;
  max-width: 100%;
}

/* COUNTDOWN SECTION */

section {
  flex: 1 1 auto;
}

.countdown {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
  max-width: 100%;
  display: none;
}

.countdown ul {
  display: flex;
  gap: 2rem
}
.countdown .clock-item {
  list-style: none;
  height: auto;
}
.countdown .clock-item .count-number {
  background: var(--accent-color);
  color: var(--font-color);
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-secondary);
  padding: 1rem;
  display: inline-block;
  width: 100%;
  text-align: center;
  line-height: 1;
  border-radius: 4px 4px 0 0;
  
}
.countdown .clock-item .count-text {
  background: var(--btn-bg-color);
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  padding: 0.5rem 0.7rem;
  display: inline-block;
  width: 100%;
  text-align: center;
  line-height: 1;
  border-radius: 0 0 4px 4px;
  color: #000;
}

.canvas {
  width: 900px;
  height: 200px;
  display: block;
  position: relative;
  background: transparent;
  margin: 40px auto;
}

.countdown h1 {
  text-shadow: 2px 2px 0 var(--accent-color);
  font-style: italic;
  margin: 2rem 0;
  font-size: 3.5rem;
  text-align: center;
}

.countdown p {
  font-size: 1.1rem;
  font-family: var(--font-secondary);
  margin-bottom: 2rem;

}
.bio {
  text-align: left;
}
/* TIGER TIME */
.tigerTalk {
  margin: auto;
}

.tiger {
max-width: 31%;
}

.talk {
  padding-left: 7rem;
}

.speak {
  padding-top: 10rem;
}

.footer {
  padding-top: 5rem;
  text-align: center;

}
.footerImage {
  max-width: 30%;
}

@media screen and (max-width: 768px) {
  .menu {
    gap: 1rem;
  }

  .wallet-btn {
    padding: 15px 15px;
    max-width: 10rem;
    margin:0 auto;
    display:block;
  }

  .countdown h1 {
    font-size: 2rem;
  }
  .countdown p {
    font-size: 1rem;
  }
  .body {
    width: 100vw;
  }
  .img {
    max-width: 75% !important;
  }
  .mainLogo {
    display: none;
  }
  header {
    box-shadow: none;
  }
  .footerImage {
    max-width: 40%;
  }
}

/* media 960 min */

@media screen and (max-width: 960px) {
  .mainLogo {
    display: none;
  }
  .wallet-btn {
    
    padding: 15px 15px;
    max-width: 10rem;
    margin:0 auto;
    display:block;
  }
  header {
    box-shadow: none;
  }
}