body {
  font-family: "Alegreya Sans", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  padding-bottom: 2em;
}

.Container {
  width: 80%;
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-rows: 6;
  grid-template-columns: 1.618fr 1fr;
}

h2 {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  font-variant: normal;
  text-transform: uppercase;
  color: dimgrey;
}

h3 {
  font-family: "Alegreya", serif;
  font-weight: 700;
  font-variant: normal;
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}


address {
  text-align: center;
}

header {
  text-align: center;
  grid-column: 1 / 3;
  grid-row: 1;
}

.Address {
  grid-column: 1 / 3;
  grid-row: 2;
}

.Experiences {
  grid-column: 1;
  grid-row: 3;
}

.Other {
  grid-column: 1;
  grid-row: 4;
}

.Skills {
  text-align: right;
  grid-row: 3 / 5;
  grid-column: 2;
}

.Skills h2 {
  color: grey;
}

.Skills li {
  font-weight: 500;
  color: darkgrey;
  list-style: none;
}

footer { 
  grid-column: 1 / 3;
  grid-row: 5;
}

.Experience p,
.Education p {
  margin: 0;
}

li::marker {
  color: darkgrey;
}

li {
  margin-bottom: 0.6rem;
}

header {
  margin-bottom: 0;
}

header h1 {
  margin-bottom: 0;
}

.Address p {
  font-family: "Alegreya Sans", sans-serif;
  font-style: normal;
}

.Experience h3 {
  margin-bottom: 0.4rem;
}

p.Experience-role {
  font-weight: 700;
  color: grey;
  margin-bottom: 0.6rem;
}


/* Responsive */

@media (width <= 640px) {
  body {
    font-size: 16px;
  }

  h2 {
    font-size: 1.125em;
  }
  
  h3 { 
    font-size: 1.4em;
  }
}

@media (width <= 1024px) {
  .Container {
    width: 80%;
    margin: 0 auto;
    grid-template-rows: 6;
    grid-template-columns: 1fr;
  }


  header,
  footer,
  .Experiences
  .Address {
    grid-column: 1;
  }

  .Skills {
    text-align: left;
    grid-column: 1;
    grid-row: 5;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1em;
    border-top: 1px solid lightgrey;
    padding-top: 1rem;
  }

  .Skills ul {
    margin-block-start: 0;
    padding-inline-start: 0;
  }

  footer {
    grid-row: 6;
  }
}
