@font-face {
    font-family: "Turista Gorda";
    src: url("./fonts/Turista Gorda NF.woff") format("woff");
}

@font-face {
    font-family: "WDXL Lubrifont";
    src: url("./fonts/WDXLLubrifontTC-Regular.woff") format("woff");
}

:root {
    --notebook: light-dark(#FFF6D5, #000);
    --color-text: light-dark(#000, #fff)
}

body {
    background-color: var(--notebook);
    color: var(--color-text);
    font-family: "WDXL Lubrifont", arial;
}

h1, h2 {
    font-family: "Turista Gorda", "WDXL Lubrifont", courier;
    font-weight: normal;
}

#logo {
    max-width: 400px;
}

#world {
    max-width: 90%;
}

.sections {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media only screen and (max-width: 600px) {
    #logo {
        max-width: 300px;
    }
    .sections {
        grid-template-columns: 1fr;
    }
    @media (prefers-color-scheme: dark) {
    	:root {
        	--notebook: #000;
        	--color-text: #fff;
	    }
	  }
}