@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
	margin: 0;
	box-sizing: border-box !important;
	font-family: Montserrat !important;
}

img, nav a, .button {
	user-select: none !important;
}

a {
	color: #005500;
}

ul {
	overflow: auto;
}

img {
	max-height: 100%;
	max-width: 100%;
}

img.left {
	float: left;
}

img.right {
	float: right;
}

a:has(> div) {
	all: unset;
	cursor: pointer;
}

div.resizeable-content {
	resize: both;
	overflow: hidden;
}


div.main-container {
	display: grid;
	min-height: 100vh;
	grid-template-areas:
		"header"
		"content"
		"footer";
	grid-template-rows: 7rem auto max-content;
	width: 100vw;
}

a.button {
	all: unset;
	cursor: pointer;
	display: inline-block;
	padding: 1rem;
	border-radius: 7px;
	text-align: center;
	background-color: #005500;
	color: white;
	font-weight: 550;
}

a.button:hover {
	background-color: #004400;
	transition: 300ms background-color;
}

a.button:not(:hover) {
	background-color: default;
	transition: 600ms background-color;
}

.mobile {
	display: none;
}

@media screen and (width < 800px) {
	div.main-container {
		grid-template-rows: 5rem auto max-content;
	}
}

@media screen and (width < 700px) {
	.mobile {
		display: block;
	}

	.non-mobile {
		display: none;
	}
}
