@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --Strong-Cyan: hsl(171, 66%, 44%);
  --Light-Blue: hsl(233, 100%, 69%);
  --Dark-Grayish-Blue: hsl(210, 10%, 33%);
  --Grayish-Blue: hsl(201, 11%, 66%);
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.4;
  color: var(--Grayish-Blue);
  overflow-x: hidden;
}

ul {
  list-style: none;
}

li {
  padding: 10px 0;
}

.text-color {
  color: var(--Dark-Grayish-Blue);
}

.container {
  padding: 0 2rem;
}

.btn {
  padding: 10px 15px;
  color: #fff;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.btn-strong-cyan {
  background: var(--Strong-Cyan);
}

.btn-light-blue {
  background: var(--Light-Blue);
}

.header {
  background: url(../images/bg-header-desktop.png) no-repeat center center/cover;
  text-align: center;
}

.logo img {
  height: 80px;
  height: 80px;
  margin: 80px 0 15px 0;
}

.header-text {
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 700;
}

.header p {
  max-width: 550px;
  margin: auto;
}

.btn-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.snippet {
  margin-top: 100px;
}

.snippet-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.snippet h2 {
  margin-bottom: 30px;
  text-align: center;
}

.snippet p {
  font-size: 14px;
  max-width: 550px;
  margin: 0 auto 25px;
}

.snippet-content img {
  width: 35rem;
}

.snippet-list {
  padding: 40px;
  width: 400px;
}

.snippet li h5 {
  padding-bottom: 10px;
  font-size: 16px;
}

.snippet-list p {
  margin: 0;
}

.clipboard {
  margin-top: 100px;
  text-align: center;
}

.clipboard h2 {
  padding-bottom: 20px;
}

.clipboard p {
  margin: auto;
  padding-bottom: 20px;
  max-width: 550px;
}

.supercharge {
  text-align: center;
  margin-bottom: 100px;
  max-width: 1200px;
  margin: auto;
}

.supercharge h2 {
  padding: 20px 20px 10px 20px;
}

.supercharge-content {
  padding: 40px 20px 20px 20px;
}

.supercharge-content {
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 30px;
}

.supercharge-content img {
  margin-bottom: 20px;
}

.supercharge h4 {
  margin-bottom: 10px;
}

.supercharge-icons {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.os {
  margin-top: 70px;
  text-align: center;
  margin-bottom: 50px;
}

.os h2 {
  margin-bottom: 10px;
}

.os p {
  max-width: 550px;
  margin: 0 auto 30px;
}

.footer {
  background: rgb(247, 247, 247);
  padding: 15px 0;
}

.footer .container {
  padding: 0 16rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-info {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-info img {
  width: 60px;
  margin-right: 50px;
}

.footer-list {
  display: flex;
  gap: 30px;
}

.footer-list ul li {
  padding: 5px;
  font-size: 10px;
}

.footer-icons {
  display: flex;
}

.footer-icons img {
  padding: 0 15px;
  width: 45px;
}

.attribution {
  font-size: 11px;
  text-align: center;
}

.attribution a {
  color: hsl(228, 45%, 44%);
}

@media (max-width: 768px) {
  .snippet-content img {
    width: 100%;
  }

  .clipboard img {
    width: 100%;
  }

  .supercharge-icons {
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .supercharge-icons img {
    padding: 20px;
  }

  .footer .container {
    padding: 0;
    justify-content: center;
  }

  .footer-info {
    margin-right: 30px;
  }
}

@media (max-width: 425px) {
  .header-text {
    font-size: 25px;
  }

  img {
    width: 100%;
  }

  .logo img {
    margin-bottom: 50px;
    height: 120px;
    width: 120px;
  }

  p {
    font-size: 14px;
  }

  .btn {
    width: 100%;
  }

  .btn-area {
    flex-direction: column;
  }

  .snippet-content {
    flex-direction: column;
  }

  .snippet-content img {
    width: 100%;
  }

  .snippet-list {
    text-align: center;
  }

  .supercharge {
    margin-top: 50px;
  }

  .supercharge-content {
    flex-direction: column;
  }

  .supercharge-content img {
    width: 50px;
  }

  .supercharge-icons {
    flex-direction: column;
  }

  .supercharge-icons img {
    padding: 25px 0;
  }

  .footer .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .footer-list {
    flex-direction: column;
    gap: 0;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;

    color: var(--Dark-Grayish-Blue);
  }

  .footer-list ul li {
    font-size: 14px;
  }

  .footer-info img {
    margin: 0;
    padding-bottom: 20px;
  }

  .footer-info {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-icons img {
    width: 55px;
  }
}
