* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Arial", sans-serif;
}

.full__img > *,
.full__img {
  width: 100%;
}

.cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  padding: 2rem 0;
}

.cont__text {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.heading {
  font-size: 2.4rem;
  font-weight: 600;
}

.text {
  font-size: 1.6rem;
  line-height: 1.4;
}

.logo {
  width: 10rem;
}

@media (max-width: 56.25em) {
  .cont {
    grid-template-columns: 1fr;
  }

  .cont__text {
    grid-row: 2/3;
    padding-top: 2rem;
  }
}
