/* 
 * ===================================
 * Reset.
 * ===================================
 */

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

/* 
 * ===================================
 * Global
 * ===================================
 */

body {
  min-height: 100vh;
  background: url(../assets/ninja.jpg) no-repeat center/ cover;
  color: #C7C7C7;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5;
}


svg {
  width: 100%;
  vertical-align: middle;
}

img,
picture {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  pointer-events: none;
  user-select: none;
}

/* 
 * ===================================
 * Section
 * ===================================
 */

.section {
  min-height: 100vh;
  display: grid;
  align-content: center;
  padding: 3rem 1.5rem;
}

/* 
 * ===================================
 * Container
 * ===================================
 */

.container {
  max-width: 73.75rem;
  margin: auto;
}

/* 
 * ===================================
 * Content
 * ===================================
 */

.content {
  margin-top: 1.5rem;
}

/* 
 * ===================================
 * Buttons.
 * ===================================
 */

/*
 * Global settings. 
 */

 .button {
  border-radius: 8px;
  color: #14142B;
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.2;
  text-decoration: none;
  transition: background .3s ease-in-out, color .3s ease-in-out;
  padding: .9em 1.5em; 
}

/* 
 * Skins.
 */

.button--green { 
  background: linear-gradient(84.2deg, #1ED760 0%, #1ED789 100%);
}

/* 
 * ===================================
 * Ninja
 * ===================================
 */

.logo-ninja { 
  max-width: 13.1875rem;
  margin: auto;
  display: block;
}

.ninja h1 { 
  color: #FFFFFF;
  text-align: center;
  font-size: 67px;
  font-weight: bold;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.ninja .box { 
  max-width: 47ch;
  margin: auto;
}

.ninja .jogajunto { 
  color: #FFFFFF;
  font-weight: bold;
}

.ninja .jogajunto:hover { 
  color: #1ED784;
  font-weight: bold;
}

.produto-jj {
  display: flex; 
  text-align: center;
  justify-content: center;
  margin-top: 4rem;
}

.produto-jj svg {
  max-width: 12.5rem;
  margin-left: 1.5rem;
}

.produto-jj a{ 
  color: #FFFFFF;
  display: block;
  text-decoration: none;
}


@media (max-width: 850px) {

  .ninja { 
    background: url(../assets/ninja-phone.jpg) no-repeat center/ cover;
  }

  .ninja h1 { 
    line-height: 1;
  }
}

@media (max-width: 851px) { 
  .ninja h2 { 
    margin-top: 4rem;
  }
}


@media (max-width: 560px) { 
  .ninja h1 { 
    margin-top: 1rem;
    font-size: 3rem;
  }

  .ninja p { 
    font-size: 1rem;
  }

  .produto-jj { 
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}