html { height: 100%; background: $body-bg; } #body-wrapper { .container { padding: $vert-padding; } padding-top: $header-height-large; } .hero + #start > #body-wrapper { padding-top: 0; } section.section { padding-left: $horiz-padding; padding-right: $horiz-padding; position: relative; } .overlay-light, .overlay-dark, .overlay-light-gradient, .overlay-dark-gradient { z-index: 0; } // Hero .hero { display: flex; align-items: center; justify-content: center; padding-top: 6rem; padding-bottom: 7rem; h1 { color: $header-text; font-size: 4rem !important; } h2 { color: rgba($header-text, 0.8); font-size: 2.5rem !important; } h1 + h2 { margin-top: -45px !important; } p { font-size: 130%; font-weight: 300; } #to-start { display: inline-block; position: absolute; bottom: 10px; font-size: 2rem; cursor: pointer; } } // Overlay .image-overlay { position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: -1; .overlay-light & { background: rgba(#fff, 0.4); } .overlay-light-gradient & { background: linear-gradient(to bottom, rgba(#fff,0.5), rgba(#fff,0.2)); } .overlay-dark & { background: rgba(#000, 0.4); } .overlay-dark-gradient & { background: linear-gradient(to bottom, rgba(#000,0.5), rgba(#000,0.2)); } }