35 lines
		
	
	
		
			No EOL
		
	
	
		
			552 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			No EOL
		
	
	
		
			552 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| @font-face {
 | |
|     font-family: DS-Digital;
 | |
|     src: url(../assets/DS-DIGI.TTF);
 | |
| }
 | |
| 
 | |
| @font-face {
 | |
|     font-family: Gilroy;
 | |
|     src: url(../assets/Gilroy-Light.otf);
 | |
| }
 | |
| @font-face {
 | |
|     font-family: Inter;
 | |
|     src: url(../assets/Inter-Regular.ttf);
 | |
| }
 | |
| 
 | |
| @font-face {
 | |
|     font-family: Penitentiary Gothic Fill;
 | |
|     src: url(../assets/Penitentiary.ttf);
 | |
| }
 | |
| * {
 | |
|     margin: 0;
 | |
|     padding: 0;
 | |
|     box-sizing: border-box;
 | |
| }
 | |
| 
 | |
| body{
 | |
|     width: 100vw;
 | |
|     height: 100vh;
 | |
|     overflow: hidden;
 | |
| }
 | |
| 
 | |
| #app{
 | |
|     width: 100%;
 | |
|     height: 100%;
 | |
|     font-family: DS-Digital;
 | |
| } | 
