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

html {
  font-size: 62.5%;
}
@media (max-width: 31.25em) {
  html {
    font-size: 50%;
  }
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #f4f5f6;
}

.full__img,
.full__img > * {
  width: 100%;
  display: block;
}

.primary-heading {
  font-size: 4.2rem;
  font-weight: 500;
}

.secondary-heading {
  font-size: 3.2rem;
  font-weight: 500;
}

.tertiary-heading {
  font-size: 2.6rem;
  font-weight: 600;
}

.basic-text {
  font-size: 1.9rem;
  line-height: 1.5;
}

.hero img {
  width: 90%;
  margin: 0 auto;
  display: block;
}
@media (max-width: 50em) {
  .hero img {
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.hero__text {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 3rem 0;
}
.hero__text h1 {
  color: #1671c5;
}

.info {
  padding: 5rem 0;
}
.info__text {
  width: 70%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 5rem 0;
  align-items: center;
}
.info__text .tertiary-heading {
  color: #1671c5;
  border-bottom: 2px solid #1671c5;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 1rem;
}
.info img,
.info video {
  width: 90%;
  margin: 0 auto;
  display: block;
}

.specs {
  width: 90%;
  margin: 0 auto;
  padding: 5rem 0;
}
.specs__row {
  display: grid;
  gap: 1rem;
  padding: 0.5rem 0;
  text-align: center;
}
.specs__row-1 {
  grid-template-columns: 1fr;
}
.specs__row-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 50em) {
  .specs__row-2 {
    grid-template-columns: 1fr;
  }
}
.specs__row-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 50em) {
  .specs__row-3 {
    grid-template-columns: 1fr;
  }
}
.specs__row-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 50em) {
  .specs__row-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.specs__row-cell {
  background-color: #fff;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}
.specs__row-cell .primary-heading {
  color: #1671c5;
}

.keyboard-grid {
  width: 90%;
  margin: 0 auto;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.keyboard-grid-cell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.keyboard-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 56.25em) {
  .keyboard-grid-3 {
    grid-template-columns: 1fr;
  }
}
.keyboard-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 56.25em) {
  .keyboard-grid-2 {
    grid-template-columns: 1fr;
  }
}

.double {
  width: 90%;
  margin: 0 auto;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.double__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: #eaedf0;
  align-items: center;
}
@media (max-width: 50em) {
  .double__row {
    grid-template-columns: 1fr;
  }
}
.double__row-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 50em) {
  .double__row-text {
    padding: 5rem 0;
    grid-row: 2/3;
  }
}/*# sourceMappingURL=Index.css.map */