/*
Reset
*/
* {
  margin: 0;
  padding: 0;
  outline: 0; }

*, *:before, *:after {
  box-sizing: border-box; }

/*
Variables
*/
/*
Document
*/
html {
  -webkit-tap-highlight-color: transparent; }

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: 'Montserrat', sans-serif;
  color: black;
  font-size: 14px;
  font-weight: 400;
  text-align: center; }

a {
  text-decoration: none; }

img {
  max-width: 100%;
  vertical-align: bottom; }

ul {
  margin-top: 15px;
  list-style: none; }
  ul li {
    line-height: 35px; }

/*
Header
*/
header {
  padding: 50px 20px 0 20px;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  height: 80vh;
  color: white; }

/*
Main
*/
main {
  margin: 50px auto;
  padding: 0 20px; }

article {
  margin-top: 25px; }

/*
Footer
*/
footer {
  padding: 20px;
  background: #f6f6f6; }

/*
Typography
*/
h1 {
  font-weight: 400;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 30px; }

h2 {
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 30px; }

small {
  font-size: 14px;
  opacity: 0.5; }

p {
  line-height: 26px;
  max-width: 640px;
  margin: 15px auto 0 auto; }

/*
Components
*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; }

.placeholder {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

/*
Attributes
*/
.__email {
  background-image: -webkit-linear-gradient(left, #FF2033, #8E00FE);
  -webkit-background-clip: text;
  font-weight: 500;
  color: #8E00FE;
  -webkit-text-fill-color: transparent;
  position: relative;
  padding-bottom: 2px; }
  .__email:after {
    content: '';
    display: block;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to right, #FF2033, #8E00FE);
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s; }
  .__email:hover:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1); }

/*
Breakpoints
*/
@media (max-width: 767px) {
  header {
    background-image: url("../img/splash-sm.png"); } }

@media (min-width: 768px) {
  body {
    font-size: 16px; }
  h1 {
    font-size: 54px;
    font-weight: 300;
    letter-spacing: -1px; }
  h2 {
    font-size: 30px;
    line-height: 40px; 
    margin-bottom: 30px;}
  p, ul {
    margin-top: 15px; }
  p {
    line-height: 30px;
    margin-bottom: 50px; }
  header {
    background-image: url("../img/splash-md.png"); }
  main {
    margin: 100px auto; }
  article {
    margin-top: 25; } }

@media (min-width: 1024px) {
  header {
    background-image: url("../img/splash-lg.png"); } }

@media (min-width: 1440px) {
  header {
    background-image: url("../img/splash-xl.png"); } }
