42 lines
		
	
	
		
			730 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			730 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200&display=swap');
 | 
						|
 | 
						|
body {
 | 
						|
    font-family: "Nunito", sans-serif;
 | 
						|
    background-color: #FFFFFF;
 | 
						|
    margin: 0px;
 | 
						|
    
 | 
						|
}
 | 
						|
h1, h2 {
 | 
						|
    text-align: center;
 | 
						|
}
 | 
						|
 | 
						|
h2::before {
 | 
						|
    background: url('/assets/images/sygnet_color.svg') no-repeat;
 | 
						|
    display: inline-block;
 | 
						|
}
 | 
						|
 | 
						|
#header {
 | 
						|
    height: 80px;
 | 
						|
    width: 100%;
 | 
						|
    display: flex;
 | 
						|
    align-items: center;
 | 
						|
    background-color: #FFFFFF;
 | 
						|
    position: fixed;
 | 
						|
    top: 0;
 | 
						|
    left: 0;
 | 
						|
}
 | 
						|
 | 
						|
#logo {
 | 
						|
    width: 250px;
 | 
						|
    margin: 0px 20px;
 | 
						|
}
 | 
						|
 | 
						|
#content {
 | 
						|
    width: 1024px;
 | 
						|
    margin: auto;
 | 
						|
    text-align: justify;
 | 
						|
    background-color: #FFFFFF;
 | 
						|
    padding: 20px 20px;
 | 
						|
    border-radius: 15px;
 | 
						|
    margin-top: 100px;
 | 
						|
} |