@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;700&display=swap');

html {
  font-family: 'Quicksand', sans-serif;
  font-weight: 300;
  font-size: 36px;
}

body {
  max-width: 1440px;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.034);
}

main {
  background-color: #fff;
}

form {
  padding: 0 15%;
  display: grid;
  grid-template-columns: auto;
}

form > div {
  display: flex;
  justify-content: center;
}

button {
  font-size: 0.75rem;
  padding: 0.25rem 5%;
  margin: 0.25rem;
}

input,
textarea {
  font-size: 1rem;
}

p {
  line-height: 1.5rem;
}

h1 {
  font-weight: 700;
  color: #fff;
  font-size: 4rem;
  text-transform: uppercase;
  text-align: right;
}

h2 {
  font-weight: 700;
  color: #000;
  font-size: 2rem;
  text-transform: uppercase;
}

header {
  background-color: #000;
  color: #fff;
  font-size: 0.67rem;
  text-align: right;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

footer {
  background-color: #000;
  color: #fff;
  font-size: 0.67rem;
  text-align: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

nav ul {
  margin: 0;
}

nav ul li {
  list-style: none;
  display: inline-block;
  padding-right: 0.5rem;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

#contact-me h2 {
  margin: 0;
  text-align: center;
}

#contact-form-control {
  color: black;
}

#my-story {
  padding-left: 15%;
  padding-right: 15%;
  padding-bottom: 1rem;
}

#my-story h2 {
  margin: 1rem 0;
}

.hero {
  position: relative;
}

.hero img {
  width: 100%;
}

.hero h1 {
  position: absolute;
  bottom: 0;
  right: 1rem;
}

#portfolio-section {
  position: relative;
}

#portfolio-section img {
  width: 100%;
}

#portfolio-section > div {
  position: absolute;
  left: 1rem;
  top: 1rem;
}

#portfolio-section > div > h2 {
  color: #fff;
  margin: 0;
}

#portfolio-section > div > a {
  color: #d8b33c;
  font-size: 2rem;
  margin: 0;
}

#portfolio-main {
  margin-top: 0.05rem;
  margin-bottom: 0.05rem;
}

.highlight {
  display: flex;
  align-items: center;
  text-align: center;
  background-color: #000;
}

.highlight.invert {
  flex-direction: row-reverse;
}

.highlight h2 {
  color: #fff;
}

.highlight a {
  color: #d8b33c;
  font-size: 2rem;
}

.highlight > div {
  flex-grow: 1;
}

.highlight > img {
  max-width: 50%;
}

#work-item-header {
  margin: 0;
  text-align: center;
}

#work-item-image {
  width: 100%;
  margin-bottom: 1rem;
}

.work-item-text {
  padding: 10px 15%;
}

.work-item-text h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.work-item-text p,
.work-item-text ul {
  margin-top: 0;
}

@media screen and (max-width: 600px) {
  html {
    font-size: 16px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  #portfolio-section > div > a {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  html {
    font-size: 24px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  #portfolio-section > div > a {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  html {
    font-size: 24px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1200px) {
}
