@font-face {
    font-family: Ubuntu;
    font-display: swap;
    src: url(/fonts/Ubuntu-R.ttf);
}

body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr;
	grid-template-areas:
		"one one one"
		"two three three"
		"four four four";
        font-family: Ubuntu;
}


nav {
	grid-area: one;
        
	background-color: rgb(150,150,150);
}

.info {
	grid-area: two;
	background-color: rgb(100,100,100);
}