
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  background-color: whitesmoke;
  color: black;
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

.content-wrap {
  max-width: 950px;
  margin: 0 auto;
  padding: 50px;
  overflow: hidden;
}

h1,
h2 {
  font-family: "Merriweather", Georgia, serif;
}

h1 {
  font-size: 42px;
  font-weight: 700;
}

h2 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 0;
}

header h1,
header h2 {
  margin: 0;
}


nav {
  background-color: #111;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav .content-wrap {
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}


header {
  background-color: white;
}

.profile-img {
  width: 100%;
  border-radius: 50%;
}

section {
  background-color: lightgray;
  margin: 20px;
  border-radius: 6px;
}


.work-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../office-bg.jpg") center/cover no-repeat;
  color: white;
}

.work-section h2,
.work-section h3,
.work-section p,
.work-section li {
  color: white;
}


.column-narrow {
  width: 30%;
  float: left;
  padding-right: 3%;
  min-height: 175px;
}

.column-wide {
  width: 70%;
  float: left;
  min-height: 225px;
}


footer {
  background-color: white;
  text-align: center;
}

.contact-info a {
  padding: 10px;
  display: inline-block;
}

.contact-info i {
  margin-right: 8px;
}

a {
  color: darkred;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}