@font-face {
	font-family: 'UglyQua';
	src: local('UglyQua'),
				url('./assets/fonts/UglyQua.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'IntelMono';
	src: local('Intel One Mono'), local('Intel One Mono Regular'),
				url('./assets/fonts/IntelOneMono-Regular.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

body {
    font-size: 1.2rem;
}

#main-nav {
	color: #221111;
	margin: auto;
}

.nav-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

#main-nav.open .nav-links {
	display: block;
}

.nav-links > li {
    /* padding: 0.75rem 0; */
    /* width: 160px; */
    /* height: 2rem; */
}

.nav-links > li > a {
	color: #221111;
	text-decoration: none;
	font-family: var(--font-heading);
	letter-spacing: -1px;
	line-height: 1rem;
	white-space: nowrap;
	padding: 0.5rem;
	display: block;
}

body {
    background-color: #D8E5C9;
}

.main-title {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: auto;
}

.main-title h2 {
    display: flex;
    flex-direction: column;
    font-size: 4rem;
    font-weight: 100;
    margin: 1rem 0 0;
    align-items: center;
}

.main-title .weird-title {
    display: flex;
    height: 70px;
}

.main-title .weird-title span {
    display: block;
}

.main-title .jude-span {
    align-self: start;
}

.main-title .brain-span {
    align-self: end;
}

.main-content {
    margin: auto;
    width: fit-content;
}


@media (min-width: 1024px) {

    body {
        margin: auto;
        max-width: 1440px;
    }

    .main-title {
        width: 800px;
    }

    .main-title h2 {
        align-items: center;
        flex-direction: row;
        font-size: 6rem;
        justify-content: space-between;
        height: 175px;
    }

    .main-title .weird-title {
        height: 140px;
    }

    .main-title .jude-span,
    .main-title .brain-span {
        align-self: unset;
    }

    #main-nav {
        width: 800px;
        margin: 0 auto 4rem;
        height: 4rem;
    }

	.nav-links {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .nav-links > li {
        width: 160px;
        height: 2rem;
    }

    .nav-links > li > a {width: fit-content;}





}