:root {
  --orng: #d86d1d;
  --h1size: 6rem;
}

* {
font-family: "Open Sans";
 box-sizing: border-box; 
}

body {
  padding: 0;
  margin: 0;
  max-width: 100%;
  padding-bottom: 4rem;
}

header {
  margin-top: 0;
  padding: 1rem;
  background-color: var(--orng);
  color: white;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;
}

header img{
  max-height: 5rem;
  padding-right: 1rem;
}

h1 {
  font-weight: 900;
  margin: 0;
  padding: 0;
  font-size: 5rem;
  vertical-align: top;
}

.hero {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  padding-bottom: 0;
  background-image: url("calculator.jpg");
  background-position: center;
  background-color: rgba(255,255,255,0.6);
  background-blend-mode: lighten;
  background-size: cover;
}

#headshot {
  position: static;
  height: 30rem;
  min-width: 50vw;
  flex: 2 2 0;
  text-align: center;
}

#headshot img{
  object-fit: cover;
  height: 30rem;
  position: relative;
  /* could make position absolute if #headshot position is relative*/
  bottom: 0;
  max-width: 100vw;
  margin-left: auto;
  margin-right: auto;
}

#price {
  font-weight: bold;
}

#contact-info{
  padding: 1rem 0.5rem 1rem 1rem ;
  flex: 2 2 0;
  margin-bottom: 1rem;
}

h2 {
  font-weight: 900;
  padding: 0;
  margin: 0;
}

h3 {
  margin: 0;
  font-size: calc(var(--h1size) - 3rem);
}
h4 {
  margin: 0;
  font-size: calc(var(--h1size) - 4rem);
}
h5{
  margin: 0;
  font-size: calc(var(--h1size) - 4.5rem);
}

a{
  color: black;
}

#email{
  text-decoration: underline;
  text-decoration-thickness: 0.2rem;
  text-decoration-skip-ink: none;
}
#points {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
#services {
  margin: 1rem;
  flex: 2 2 0;
}
#services-content{
  color: var(--orng);
  border: 0.3rem solid var(--orng);
  border-radius: 1rem;
  margin-top: 3rem;
}

#services-heading {
  float: left;
  padding: 0;
  margin: 0;
  margin-left: 1rem;
  margin-top: -1.5rem;
  background-color: white;
  padding-left: 1rem;
  padding-right: 1rem;
}
#borderHack {
   background-color: white; /*This would have to be the same as the background*/
}
#services-list{
  padding: 1rem 0.5rem 0rem 2.5rem;
}
#skills{
  margin: 1rem;
  flex: 2 2 0;
}
li{
  font-weight: 600;
  font-size: calc(var(--h1size) - 4.5rem);
}

footer {
  background-color: var(--orng);
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  position: fixed;
  height: 4rem;
  bottom: 0;
}
