*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
	height: 100vh;
    font-size: 62.5%; /* 1rem = 10px */
}

body{
	display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    line-height: 1.7;
	background-color: #374758;
	color: #fff;
    
}

.page {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 100vh;
}

header {
    flex: 1;
	max-height: 100px;
}

.header_inner {
	font-family: "Lato", sans-serif;
    margin: auto;
    padding: 40px 0px 10px 0px;
    text-align: center;
}

main {
    flex: 1;
}

.main-title{
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 8rem;
    text-shadow: none;
}

.main-title h1{
    font-size: 6rem;
    text-transform: none;
    font-weight: 700;
    color: #fff;
}

.main-title h2{
    font-size: 3.5rem;
    font-weight: 300;
    text-transform: none;
	color: #fff;
}

.main-title h3{
    font-size: 1.5rem;
    font-weight: 100;
    text-transform: none;
	color: #fff;
}

.footer {
    font-size: 13px;
    line-height: 20px;
    background-color: #f5f5f5;
	color: #374758;
}

.footer__inner {
	font-family: "Lato", sans-serif;
    margin: auto;
    padding: 20px;
    max-width: 680px;
    text-align: center;
}


  /* Media Queries */

  @media (min-width: 640px){
    .main-title h1{
        font-size: 3rem;
        text-transform: none;
        font-weight: 700;
        color: #555;
    }
    
    .main-title h2{
        font-size: 2rem;
        font-weight: 300;
        text-transform: none;
    }
    
     
    }
     
    @media (min-width: 768px){
        .main-title h1{
            font-size: 4rem;
            text-transform: none;
            font-weight: 700;
            color: #555;
        }
        
        .main-title h2{
            font-size: 2.5rem;
            font-weight: 300;
            text-transform: none;
        }
    
     
    }
     
    @media (min-width: 1024px){
     
        .main-title h1{
            font-size: 6rem;
            text-transform: none;
            font-weight: 700;
            color: #555;
        }
        
        .main-title h2{
            font-size: 3.5rem;
            font-weight: 300;
            text-transform: none;
        }
     
    }
     
    @media (min-width: 1200px){
     
        .main-title h1{
            font-size: 6rem;
            text-transform: none;
            font-weight: 700;
            color: #555;
        }
        
        .main-title h2{
            font-size: 3.5rem;
            font-weight: 300;
            text-transform: none;
        }

        .main-title{
            text-align: center;
            margin-top: 4rem;
            margin-bottom: 4rem;
        }
        
     
    }