/*
- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

font-family: 'Montserrat', sans-serif;

*/

:root {
  --white-bg-color: #ffffff;
  --grey-main-color: #4e5150;
  --grey-secondary-color: #bdbdbd;
  --grey-tertiary-color: #e5e5e5;
  --footer-color: #a9a9a9;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  background-color: var(--white-bg-color);
  font-family: "Montserrat", sans-serif;
  color: var(--grey-main-color);
  line-height: 1;
}

.container {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 4rem;
  padding: 3rem 3.25vw;
}

/* HEADER SECTION */
.header-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.profile-img {
  width: 10.1rem;
  height: auto;
  border-radius: 16px;
  margin-bottom: 1.2rem;
}

.profile-name {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.7rem;
  margin-bottom: 0.4rem;
}

.profile-address {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2rem;
  color: var(--footer-color);
  margin-bottom: 1.2rem;
}

.profile-info {
  display: flex;
}

.box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 5.2rem;
  width: 7.8rem;
  margin-right: 1.2rem;
  background-color: var(--grey-tertiary-color);
  border-radius: 12px;
}

.box-primary {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4rem;
}

.box-secondary {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4rem;
  color: var(--grey-secondary-color);
}

/* CONTENT SECTION */
.content-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1.2rem;
  grid-template-areas:
    "a1 a2 a2"
    "a3 a3 a4"
    "a5 a6 a4";
}

.content-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.img-box-1 {
  grid-area: a1;
}

.img-box-2 {
  grid-area: a2;
}

.img-box-3 {
  grid-area: a3;
}

.img-box-4 {
  grid-area: a4;
}

.img-box-5 {
  grid-area: a5;
}

.img-box-6 {
  grid-area: a6;
}

/* FOOTER SECTION */
.footer {
  display: flex;
  justify-content: center;
  margin-bottom: 2.4rem;

  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7rem;
  color: var(--footer-color);
}

.footer-name {
  font-weight: 700;
  text-decoration: underline;
}

.footer a {
  color: var(--footer-color);
  cursor: pointer;
}
