body {
  font-family: Raleway, sans-serif;
  padding: 0;
  margin: 0;
}

header {
  font-size: 2rem;
  border-bottom: 0.7pt solid #C5C8D0;
  padding: 8pt 6rem;
  font-weight: 200;
  font-family: Manrope, sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  background: white;
  width: 100%;
  top: 0;
  left: 0;
  box-sizing: border-box;
  z-index: 1000;
}

.container {
  padding: 3rem 6rem;
}

.primary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  background-color: #ffee13;
  color: #000000;
  border: 1.5pt solid black;
  padding: 4pt 8pt;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: #000000 5px 5px 0 1px;
  transition: all 0.3s ease-in-out;
}

.primary-btn:hover {
  color: #383838;
  box-shadow: #000000 10px 10px 0 1px;
}

.primary-btn:active {
  box-shadow: #000000 0 0 0 1px;
  transform: translate(5px, 5px);
}

.hero-text {
  font-size: 4rem
}

#copy-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
}

.cmd-text {
  line-height: 1.8rem;
}

.secondary-section {
  gap: 4rem;
}

footer {
  font-size: 1rem;
}

.third-section {
  align-items: center;
}

.third-section > div:nth-child(2) {
  justify-content: end;
}

.third-section > div:nth-child(2) > button {
  width: 50%;
}

footer {
  background: #222;
  color: #eee;
  padding: 1rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Mobile Device */
@media (max-width: 768px) {
  header {
    padding: 8pt 2rem;
    font-size: 1.5rem;
  }

  .primary-btn {
    padding: 2pt 4pt;
  }

  .mobile-column {
    flex-direction: column;
  }

  .hero-text {
    font-size: 2.3rem;
  }

  .container {
    padding: 3rem 2rem;
  }

  .terminal {
    font-size: 0.7rem;
  }

  .cmd-text {
    line-height: 1.2rem;
  }

  .secondary-section {
    gap: 3rem;
    align-items: center;
  }

  .third-section {
    align-items: start;
  }

  .third-section > div:nth-child(2) {
    justify-content: start;
  }

  .third-section > div:nth-child(2) > button {
    width: 100%;
  }

  footer {
    padding: 1rem 2rem;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }
}
