* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Bitter";
}

/* Container Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Font Styles  */
.font-large-title {
  font-size: 48px;
}
.font-title {
  font-size: 32px;
}
.font-body {
  font-size: 16px;
}
.font-bold {
  font-weight: 500;
}

/* Color Styles */
.color-black {
  color: #000;
}
.color-blue {
  color: #1d63af;
}

/* Button Style */
.button {
  height: 46px;
  padding: 0 28px;
  border: 1px solid #dfdfdf;
  border-radius: 23px;
  background-color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Helpers */
.margin-bottom-20px {
  margin-bottom: 20px;
}

.margin-bottom-16px {
  margin-bottom: 16px;
}

/* Later we'll learn more about display:flex */
.item-center-helper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-around-helper {
  display: flex;
  justify-content: space-around;
}

.item-between-helper {
  display: flex;
  justify-content: space-between;
}

/* Grid Styles */

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 20px;
}

.col-3 {
  grid-column: auto / span 3;
}

.col-4 {
  grid-column: auto / span 4;
}

.col-5 {
  grid-column: auto / span 5;
}

.col-6 {
  grid-column: auto / span 6;
}

.col-7 {
  grid-column: auto / span 7;
}

.col-12 {
  grid-column: auto / span 12;
}

/* Navigation Styles */
.navbar {
  padding: 12px;
  margin-bottom: 20px;
}

.nav-title {
  padding-top: 10px;
}

.nav-link-group {
  padding: 20px;
  border: 1px solid #dfdfdf;
  border-radius: 50px;
}

.nav-link-group > .link {
  text-decoration: none;
}

.menu-icon {
  border: 1px solid #dfdfdf;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-left: auto;
  cursor: pointer;
}

/* Section Styles */
.section {
  margin-bottom: 20px;
}
.section-title-group {
  padding-top: 80px;
  padding-left: 40px;
  padding-right: 40px;
}
.section-title-group > h2 {
  margin-bottom: 4px;
}
.section-coffee-img {
  width: 120px;
}
.section-right-container {
  padding: 16px 40px;
}

/* Coffee List Styles */
.coffee-card-container {
  margin-bottom: 20px;
}
.coffee-card-img {
  min-height: 320px;
  border-radius: 20px;
}
.coffee-card-text-container {
  padding-top: 20px;
  padding-bottom: 40px;
  padding-left: 28px;
  padding-right: 28px;
  text-align: center;
}
.card-title {
  margin-bottom: 16px;
  font-weight: 500;
}
.coffee-card-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.coffee-first-card-img {
  background-image: url("https://raw.githubusercontent.com/lwinmoepaing/html-css-beginner/master/29_css_grid_practice/02_final_version/images/coffee-card-img-1.png");
}
.coffee-second-card-img {
  background-image: url("https://raw.githubusercontent.com/lwinmoepaing/html-css-beginner/master/29_css_grid_practice/02_final_version/images/coffee-card-img-2.png");
}
.coffee-third-card-img {
  background-image: url("https://raw.githubusercontent.com/lwinmoepaing/html-css-beginner/master/29_css_grid_practice/02_final_version/images/coffee-card-img-3.png");
}
.coffee-fourth-card-img {
  background-image: url("https://raw.githubusercontent.com/lwinmoepaing/html-css-beginner/master/29_css_grid_practice/02_final_version/images/coffee-card-img-4.png");
}

/* Feature Coffee Section Style */
.feature-coffee {
  margin-bottom: 20px;
}
.feature-coffee-text {
  padding: 40px;
}
.feature-coffee-image {
  min-height: 220px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  background-image: url("https://raw.githubusercontent.com/lwinmoepaing/html-css-beginner/master/29_css_grid_practice/02_final_version/images/feature-coffee-img.png");
}

/* Footer Style */
.footer {
  padding: 20px 40px;
}