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

html {
  font-size: 62.5%;
  font-family: sans-serif;
}

body {
  color: #4c2e1a;
  background-color: #f4f2f2;
}

.primary-heading {
  font-size: 2.8rem;
  font-weight: 600;
}

.secondary-heading {
  font-size: 2.2rem;
  font-weight: 600;
}

.tertiary-heading {
  font-size: 1.8rem;
  opacity: 0.8;
  border-bottom: 1px solid currentColor;
}

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

.hero {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 90%;
  margin: 5rem auto;
  gap: 3rem;
}

.hero-img {
  width: 100%;
  border: 2px solid currentColor;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media only screen and (max-width: 50em) {
  .hero {
    grid-template-columns: 1fr;
  }
}

.drinks {
  width: 90%;
  margin: 5rem auto;
}

.drinks-heading {
  font-size: 2.2rem;
  font-weight: 400;
  border: 1px solid currentColor;
  display: inline-block;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.drinks-cont {
  font-size: 1.6rem;
  border: 1px solid currentColor;
  padding: 3rem 5rem;
  columns: 3;
}

.funct-cont {
  font-size: 1.6rem;
  border: 1px solid currentColor;
  padding: 3rem 5rem;
  columns: 2;
}

@media only screen and (max-width: 50em) {
  .drinks-cont {
    columns: 2;
  }
}

@media only screen and (max-width: 31.25em) {
  .drinks-cont,
  .funct-cont {
    columns: 1;
  }
}

.features {
  width: 90%;
  margin: 5rem auto;
}

.features-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.feature-cont {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid currentColor;
  padding: 3rem 4rem;
}

svg {
  width: 10rem;
  height: 10rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
