32 lines
		
	
	
		
			578 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			578 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
@import url(spectre.css);
 | 
						|
@import url(fonts.css);
 | 
						|
 | 
						|
/** Font classes **/
 | 
						|
 | 
						|
.arvo {
 | 
						|
    font-family: 'arvoregular'/*Fallback??*/;
 | 
						|
}
 | 
						|
 | 
						|
.main-header {
 | 
						|
    background-image: url(../img/fara_background.jpg);
 | 
						|
    background-size: cover;
 | 
						|
    background-position: center;
 | 
						|
    background-repeat: no-repeat;
 | 
						|
    width: 100%;
 | 
						|
    min-height: 900px;
 | 
						|
    color: #fff;
 | 
						|
    display: flex;
 | 
						|
    align-items: center;
 | 
						|
    justify-content: center;
 | 
						|
    flex-direction: column;
 | 
						|
    margin: 0;
 | 
						|
    padding: 0;
 | 
						|
}
 | 
						|
.main-header h1 {
 | 
						|
    font-size: 3rem;
 | 
						|
}
 | 
						|
#title {
 | 
						|
    flex: none;
 | 
						|
    min-width: 50%;
 | 
						|
}
 | 
						|
     |