html {
  /* Set the root font size such that 1.0rem === 10px*/
  font-size: 62.5%;

  /* Prevent browser overscroll effect */
  overflow: hidden;
}

body {
  margin: 0;
  font-size: 1.6rem;
  /*font-family: "Lato", "Helvetica", "Arial", "sans-serif";*/
  font-family: "Lato", "Courier New";
  /*font-family: "Courier New";*/
  color: black;
  overflow-y: hidden;
}

a, a:visited {
    text-decoration: underline;
    color: inherit;
}

button {
    border: none;
    border-radius: 4px;
}

h1, h2, h3, h4, h5, h6 {
    text-align: center;
    font-weight: normal;
}

h2 {
    font-size: 2.25em;
}

h3 {
    font-size: 1.5em;
}

h4 {
    font-size: 1.0em;
}

p {
    /*color: rgba(0, 0, 0, 0.7);*/
    line-height: 1.6;
    font-size: 1.125em;
    /*margin: 1em .5em 1em .5em;*/
}

/*#root { height: 100%; }*/

.app {
    margin-top: 2em;
    width: 95vw;
    align-self: center;
}

.text-center {
    text-align: center;
}

.byline {
    color: rgba(0, 0, 0, 0.7);
}

.main {
    /*background-color: pink;*/
    width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding-top: 3em;
    padding-bottom: 3em;
}

.header {
    height: 60px;
    /*padding-left: 10px;
    padding-right: 10px;*/
    background-color: #004126;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.6);
}

.header a {
    padding-left: 10px;
    /*padding-right: 10px;*/
    height: 60px;
    line-height: 60px;
    color: inherit;
}

.header-bold {
    color: white !important;
    font-weight: bold;
}

.header-right {
    color: white !important;
    font-weight: bold;
    /*padding-right: 20px;*/
    background: #f60;
    font-size: inherit;
    border: none;
    /* top, right, bottom, left */
    margin: 16px 16px 16px 0px;
    cursor: pointer;
    /*background-color: red;*/
}


body {
    /*font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;*/
    overflow-x: hidden;
    background-color: white;
}

.logo-section {
    background: linear-gradient(to bottom, #004126 0%, #191c1f 100%);
    min-height: 240px;
    color: white;
    align-items: center;
    justify-content: center;
}

.big-logo {
    width: 75px;
    height: 75px;
    display: inline;
    margin-bottom: -.2em;
    margin-right: -24px;
}

.home-logo-image {
    width: 44px;
    height: 44px;
    margin: 10px 0px 0px 10px;
    /*
    display: inline;
    margin-right: -24px;
    transform: translateY(13px);*/
}

.logo-big-text {
    font-size: 4em;
    margin-left: auto;
    margin-right: auto;
}

.logo-section h3 {
    margin-bottom: 22px;
}

.cta {
    background: #f60 !important;
}

.signup {
    background: #f60;
    text-align: center;
    min-width: 200px;
    height: 60px;
    color: white;
    margin-bottom: 48px;
    justify-self: center;
    align-self: center;
    font-weight: bold;
    cursor: pointer;
}

.product-section {
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    text-shadow: 2px 2px 2px #303030;
    background-color: black;
    background: url(../images/cafe1-opacity50-brightness-minus75-no-watermark.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
    overflow: hidden;
    margin-bottom: 1.5em;
}

.product-text {
    background-color: rgba(0,0,0,0.8);
    border-radius: 0px 10px 10px 0px;
    width: 30%;
    min-width: 240px;
    max-width: 400px;
    /*height: 40%;*/
    color: white;
    font-weight: bold;
    padding: 1em;
}

.footer {
    background-color: #004126;
    color: rgba(255, 255, 255, 0.6);
    height: 2.5em;
    align-items: center;
    margin-top: 1em;
    width: 100%;
}

.footer a {
    color: inherit;
}

.footnote {
    font-size: 0.8em;
}

.headshot {
    width: 100px;
    height: 100px;
    float: left;
    border-radius: 50px;
    margin-top: 10px;
    margin-right: 7px;
}

.linkedin {
    width: 50px;
    height: 50px;
}

/* spectre form overrides */
.form-input {
    font-size: inherit;
    height: 2.0em;
    line-height: 2.0em;
}

.form-label {
    line-height: inherit;
}

.btn {
    color: rgb(0, 0, 0);
    font-size: inherit;
    height: inherit;
    line-height: inherit;
    border-radius: inherit;
}

.btn.btn-link, .btn.btn-link:hover {
    color: rgb(0, 0, 0);
}

.btn.btn-primary {
    background: #004126;
    border: 1px solid #004126;
    border-radius: 4px;
}

.btn.btn-primary.active {
    background: #f60;
    border-color: #f60;
}

.btn.btn-primary:hover {
    background: #f60;
    border-color: #f60;
}

.no-bullet-list {
    margin-top: 0em;
}
.no-bullet-list li {
    list-style-type: none;
    text-align: left;
    /* hack */
    margin-left: 33%;
}

ol li, ul li {
    font-size: 1.125em;
}

/* hack to avoid fixed position as long as possible */
.spacer {
    height: 10em;
}
/* media query overrides */

@media only screen and (max-width: 799px) {
    .main {
        width: inherit;
        margin: auto;
        padding: 1em;
        padding-bottom: 2em;
    }
    
}


