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

body {
  font-family: "Inter", sans-serif;
  background-color: #fffdfa;
  color: #343a40;
}

.main-container {
  width: 950px;
  margin: 0 auto;
  border-bottom: 8px solid #181130;
}

/* HEADER SECTION */
header {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  background-color: #181130;
  color: #fffdfa;
  padding: 68px 0px;
  margin-bottom: 48px;
}

.main-title {
  width: 600px;
  font-size: 30px;
  line-height: 1.7;
  /* margin-bottom: 25px; */
}

header h1 {
}

ul,
p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.main-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  column-gap: 50px;
  margin-top: 60px;
  margin-bottom: 20px;
}

h2,
h3 {
  margin-bottom: 15px;
}

footer {
  margin-bottom: 48px;
  font-size: 14px;
  /* 12 / 14 / 16  */
  color: #495057;
}

/* PERSONAL ADDITION */
.line {
  /* display: flex; */
  flex: 1fr;
  height: 1px;
  background-color: #181130;
}
