:root {
  --red: #F05E22;
  --blue: #00599A;
  --gold: #C49105;
  --darkGrey: #373737;
  --black: #000000;
  --bg-color: #F4F1ED;
  --white: #FFFFFF;

  --serif: 'Cormorant Garamond', serif;
  --sans-serif: 'Montserrat', sans-serif;

  --section-gutter: 135px;
  --header-height: 70px;
  --body-padding: 10px;
}

* {
  transition: transform .1s;
}

/* colors */
.red {
  color: var(--red);
}
.blue {
  color: var(--blue);
}

/* typography */
h1 {
  font-size: 36px;
  font-weight: 500;
}
h5 + h1 {
  margin-top: 10px;
}

h2 {
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
}

h5 {
  color: var(--gold);
  font-size: 12px;
  font-family: var(--sans-serif);
  text-transform: uppercase;
  margin: 0;
}
h1 + h5 {
  margin-top: -15px;
}

h6, .nav, .footer {
  color: var(--black);
  font-family: var(--sans-serif);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

/* body */
body {
  background-color: var(--bg-color);
  font-family: var(--serif);
  font-size: 16px;
  color: var(--darkGrey);
  margin: 0;
}
.container {
  max-width: 942px;
  margin: auto;
  padding-left: var(--body-padding);
  padding-right: var(--body-padding);
}

/* footer */
.footer {
  background-color: var(--darkGrey);
  color: var(--white);
  padding-top: 40px;
}
.footer .container {
  display: flex;
  justify-content: space-between;
}
.footer ul {
  list-style: none;
  padding-left: 0px;
}
.footer ul li {
  margin-bottom: 20px;
}
.footer ul li a {
  color: inherit;
  text-decoration: none;
}
.footer .copywrite {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
}

/* dots */
.dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}
.dot.her {
  background-color: var(--red);
}
.dot.him {
  background-color: var(--blue);
}

/* forms */
form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
input, textarea {
  margin-top: 20px;
  margin-bottom: 10px;
  width: 100%;
  font-family: var(--serif);
  font-size: 16px;
}
textarea {
  margin-top: 40px;
  padding: 5px 10px;
}
input:focus, textarea:focus {
  outline: none;
}
input {
  height: 23px;
  border: none;
  border-bottom: 1px solid var(--darkGrey);
  background-color: transparent;
}
textarea {
  background-color: var(--white);
  border: 1px solid var(--darkGrey);
  height: 180px;
  box-sizing: border-box;
}
button {
  height: 56px;
  background-color: var(--red);
  width: 274px;
  border: none;
  color: var(--white);
  margin-left: auto;
  margin-top: 30px;
  text-transform: uppercase;
  font-family: var(--sans-serif);
  font-weight: bold;
  font-size: 12px;
  cursor: pointer;
  transition: transform .3s;
}
button:hover {
  opacity: 0.8;
  transform: translateY(-1px);
  box-shadow: 0 7px 14px rgba(50,50,93,.1);
}
@media only screen and (max-width: 768px) {
  button {
    width: 100%;
  }
}
