#intro {
    position: relative;
    height: 100px;
    margin-top: 50px;
    z-index: 1;
}

#intro h1 {
	font-size: 1.0rem;
}

h1 {
	line-height: 20px;
}

@media only screen and (min-width: 768px) {
    #intro {
        height: 200px;
        margin-top: 70px;
    }
    
    #intro h1 {
   	 	font-size: 30px;
    	font-size: 1.875rem;
    }
}
@media only screen and (min-width: 1170px) {
    #intro {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: 300px;
        margin-top: 0;
    }
    #intro h1 {
        font-size: 32px;
        font-size: 2rem;
    }
    .content {
        padding: 0;
        margin-top: 370px;
    }
}

