/* Box model fix */
html {
  box-sizing: border-box;
}

*, *: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 {
  background-color: white;
}

header h1,
header h2 {
  margin: 0;
}

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

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

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

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

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

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

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

a:hover {
  text-decoration: underline;
}