html, body {
    height: 100%; 
    background-color:#728c83;
    font-family: Helvetica, Arial, sans-serif;
    /* background: url(./assets/western-marinas.jpeg) no-repeat center center fixed;  */
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

body {
    font-family: Helvetica, Arial, sans-serif;
    /* color: #171E27; */
    color: white;
    margin: 0;
    padding: 0;
}
main {
  height: calc(100vh - 106px);
}

.wrapper{
  padding: 2em 2em 3em 2em;
  background: #728c83;
  /* background: white; */
  width: 100%;
}

a{
  text-decoration: underline;
  color: white;
}

.container {
  margin: 0 auto;
}

h1 {
  font-weight: normal;
  font-size: 2.75em;
}
p {
  font-weight: normal;
  font-size: 1.25em;
  max-width: 40em;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.25em;
}

p.large {
  font-size: 1.5em;
}


.w-full {
  width: 100vw;
}
.h-full {
  height: 100vh;
}
.flex {
  display: flex;
}
.justify-center {
  justify-content: center;
}
.align-center {
  align-items: center;
}

.block {
  display: block;
}
.uppercase {
  text-transform: uppercase;
}
.text-xs {
  font-size: 1.1rem;
}
.text-s {
  font-size: 1.2rem;
}
.text-xl {
  font-size: 1.5rem;
}
.text-3xl {
  font-size: 3rem;
}
.font-light {
  font-weight: 300;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.text-gold {
  color: rgba(149, 130, 62, 1);
}
.text-center {
  text-align: center;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-16 {
  margin-top: 4rem;
}