html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
  font-family: "neue-haas-grotesk-display", Helvetica, sans-serif;
  overflow-x: hidden;
}

.hero {
  min-height: 100vh;
  max-height: 100vh;
  background: linear-gradient(180deg, rgba(178,204,182,1) 0%, rgba(28,59,74,1) 85%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem 0;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10rem;
}

.monogram {
 width: 128px;
 height: auto; 
}

h1 {
  display: flex;
  align-items: center;
  font-size: 6rem;
  font-weight: 100;
  font-style: italic;
  text-transform: uppercase;
}

h1 > sup {
 font-size: 24px;
 margin-top: -3rem;
 margin-left: .5rem;
 font-weight: 600;
}

.tag {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 3rem;
  margin-bottom: 10rem;
}

.upcoming {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #B2CCB6;
}

.upcoming > p {
  margin-bottom: 1.5rem;
}

.form {
  background-color: rgba(28,59,74,1);
  display: flex;
  justify-content: center;
  align-items: center;
}

form {
  display: flex;
  flex-direction: column;
  min-width: 33%;
  color: #B2CCB6;
  font-weight: 200;
}

label {
  margin-bottom: .5rem;
  margin-left: 1rem;
}

input, textarea {
  background: none;
  border: solid 1px #B2CCB6;
  border-radius: 2rem;
  padding: 1rem;
  margin-bottom: 1rem;
  color: #B2CCB6;
  font-size: 1.25rem;
}

textarea {
  min-height: 8rem;
  font-family: "neue-haas-grotesk-display", Helvetica, sans-serif;
}

.submit {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.submit > a {
  text-decoration: none;
  color: inherit;
  font-size: .75rem;
  margin-top: .5rem;
}

.submit > a:hover {
  text-decoration: underline;
  cursor: pointer;
}

button {
  padding: .5rem 2rem;
  background: none;
  border: solid 1px #B2CCB6;
  border-radius: 2rem;
  color:  #B2CCB6;
  text-transform: uppercase;
  font-size: 1.25rem;
  transition: all .5s ease-out;
}

button:hover {
  background: #B2CCB6;
  color: black;
  cursor: pointer;
}

footer {
  background: rgba(28,59,74,1);
  color: #B2CCB6;
  padding: 4rem 1.5rem 1rem;
}

.content {
  display: flex;
  justify-content: space-between;
}

.footer-monogram {
  width: 4rem;
 height: auto; 
}

.logo {
  display: flex;
  align-items: center;
  font-size: 3rem;
  font-weight: 100;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.logo sup {
  font-size: 1rem;
  font-weight: 600;
  vertical-align: top;
  margin-left: .5rem;
}

.email {
  font-size: 1.55rem;
  text-decoration: none;
  color: #B2CCB6;
  margin-top: 2rem;
  margin-bottom: .75rem;
}

.email:hover {
  text-decoration: underline;
  cursor: pointer;
}

.location {
  font-weight: 600;
}

.right {
  width: 33%;
}

.social {
  text-align: end;
  padding-bottom: .75rem;
  border-bottom: solid 1px #B2CCB6;
}

.social > a:hover {
  cursor: pointer;
}

.social > a > svg {
  transition: transform .5s ease-out;
}

.social > a > svg:hover {
  transform: scale(1.1);
}

.social > a:not(:last-child) {
  margin-right: 1rem;
}

.about {
  margin-top: .75rem;
}

.copyright {
  display: flex;
  margin-top: 4rem;
}

.copyright > p {
  padding-right: 1rem;
  border-right: solid 1px #B2CCB6;
}

.copyright > a {
  margin-left: 1rem;
  text-decoration: none;
  color: #B2CCB6
}

.copyright > a:hover {
  cursor: pointer;
  text-decoration: underline;
}

@media only screen and (max-device-width: 1200px) {
  form {
    min-width: 50%;
  }
}

@media only screen and (max-device-width: 768px) {
  h1 {
    font-size: 4rem;
  }

  h1 > sup {
    font-size: 1rem;
    margin-top: -2rem;
  }

  .tag {
    font-size: 1.5rem;
  }

  .content {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
  }

  .logo {
    margin-bottom: none;
  }

  .email {
    margin-top: 1rem;
  }

  .right {
    width: 50%;
  }

  .social {
    text-align: center;
  }

  .about {
    text-align: center;
  }
}

@media only screen and (max-device-width: 576px) {
  .hero {
    text-align: center;
  }

  .monogram {
    width: 72px;
  }
  
  h1 {
    font-size: 3rem;
  }

  h1 > sup {
    font-size: .75rem;
    margin-top: -1.5rem;
  }

  .tag {
    font-size: 1.5rem;
  }

  form {
    width: 100%;
    margin: 0 1.5rem;
  }

  .footer-monogram {
    width: 3rem;
  }

  .logo {
    font-size: 2rem;
  }

  .logo > p > sup {
    font-size: .75rem;
    margin-top: -1rem;
  }

  .right {
    width: 80%;
  }

  .copyright {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .copyright > p {
    padding-right: 0;
    border-right: none;
  }

  .copyright > a {
    margin-top: 1rem;
    margin-left: 0;
  }
}

@media only screen and (max-device-width: 388px) {
  .monogram {
    width: 48px;
  }

  h1 {
    font-size: 2rem;
  }

  h1 > sup {
    margin-top: -.9rem;
    margin-left: .5rem;
  }
}