html {
  width: 100%;
  font-size: 14px;
  scroll-behavior: smooth;
}
body {
  text-align: center;
  width: 100%;
  font-family: "Literata", serif;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
  margin: 0;
  color: #2e2e2e;
  background-color: #ffffff;
}
a {
  text-decoration: none;
  color: #E85C0D;
}
a:hover {
  text-decoration: underline;
}
.container {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  margin-bottom: 1rem;
}
header {
  justify-content: space-between;
  border-bottom: .1rem solid #bbbbbb;
  padding-top: 2.5rem;
  padding-bottom: 1rem;
}
#name-wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
#fullname {
  font-size: 2.7rem;
  font-weight: bold;
}
#about{
  margin-bottom: 10px;
}
#jobtitle {
  font-size: large;
  margin-top: .1rem;
  font-weight: 300;
}
#about {
  font-size: medium;
  font-weight: 300;
}
.contact {
  padding: 12px 0;
  margin-bottom: var(--contact-bottom-margin)
}
.contact a {
  text-decoration: none;
}
.contact a:not(:last-of-type) {
  margin-inline-end: 12px;
}
.contact a svg {
  height: 20px;
  width: 20px;
}
section {
  display: flex;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  padding-left: .2rem;
  border-bottom: .1rem solid #bbbbbb;
  hyphens: auto;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 300;
  text-align: left;
  min-width: 10rem;
  /* color: #686D76; */
}
.section-content {
}
.section-flex {
  display: flex;
  flex-wrap: wrap;
}
.block {
  margin-bottom: 2rem;
}
.block-square {
  width: 18rem;
}
.block-square:nth-last-child(2) {
  margin-bottom: 0;
}
.block:last-child {
  margin-bottom: 0;
}
.block-title {
  /* display: flex; */
  font-size: 1.5rem;
  margin-bottom: .1rem;
  font-weight: bold;
}
.block-url-title {
  display: flex;
  /* flex-wrap: wrap; */
  align-items: flex-end;
  font-size: 1.5rem;
  margin-bottom: .1rem;
  font-weight: bold;
}
.url {
  margin-left: 10px;
}
.url a {
  text-decoration: none;
}
.url a svg {
  height: 16px;
  width: 16px;
}
.skill {
  display: flex; 
  align-items: center; 
  margin-bottom: .5rem; 
}
.skill-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-right: 1rem;
}
.block-subtitle {
  font-size: 1.1rem;
  margin-bottom: .8rem;
  color: #acb0b6;
}
.block-content {
  font-size: medium;
  line-height: 1.5;
}
footer {
  color: #bbbbbb;
  font-size: medium;
  font-weight: 500;
  min-height: 3rem;
  line-height: 3rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media print {
  html {
    font-size: 12px;
  }
  .print {
    display: none;
  }
}
@media screen and (max-width: 48rem) {
  html {
    font-size: 12px;
  }
  .container {
    padding-left: .4rem;
    padding-right: .4rem;
  }
  header {
    display: block;
    padding-bottom: 1rem;
  }
  #name-wrapper {
    text-align: center;
    padding-bottom: 2rem;
  }
  /* #contact {
    padding-top: 1rem;
    border-top: .1rem solid #bbbbbb;
  } */
  section {
    display: block;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
  .section-flex {
    display: block;
  }
  .block-square {
  }
  .block-square:nth-last-child(2) {
    margin-bottom: 2rem;
  }
}
