@font-face {
  font-family: "Manrope";
  font-weight: 100 900;
  font-style: normal;
  src: url("fonts/Manrope-VariableFont_wght.woff2") format("woff2");
}

:root {
  --primary: #9e1b32;
  --secondary: #E2BBC2;
  --gray: #737373;
}

html {
  font-family: "Manrope";
  font-weight: 470;
  max-width: 800px;
  margin-inline: auto;
  padding: 5px;
}

h1 {
  font-weight: 900;
}

h1::after {
  content: url("favicon.png");
  display: inline-block;
  transform: scale(.5);
  position: relative;
  top: -5px;
}

main {
  display: flex;
  flex-direction: column;
}

nav {
  background-color: var(--primary);
  color: white;
  padding: 8px;
  border-radius: 10px;
}

nav a {
  color: white;
}

a {
  color: var(--primary);
}

img {
  border-radius: 10px;
}

hr {
  color: var(--gray);
}

.navbarleft {
  float: right;
}

.headshot1 {
  width: 256px;
  @media only screen and (min-width: 605px) {
    float: right;
    margin-left: 10px;
  }
}

.headshot2 {
  width: 256px;
  float: left;
  margin-right: 10px;
}

.about {
  display: inline;
  flex-direction: row;
  flex-wrap: wrap;
}

.portfolio {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
}

.pfimg {
  width: 256px;
  @media only screen and (max-width: 809px) {
    width: 49%;
  }
  @media only screen and (max-width: 430px) {
    width: 100%;
  }
}

.offer {
  background-color: var(--secondary);
  margin: 15px;
  padding: 10px;
  border-radius: 15px;
  max-width: 400px;
  margin-inline: auto;
}

.pricing {
    display: flex;
    padding: 5px;
    border-radius: 10px;
    background-color: var(--primary);
    color: white;
    justify-content: center;
    margin-bottom: 0;
}

.button {
  text-decoration: none;
}
