html {
	background-color: rgb(34, 32, 32);
    color-scheme: dark;

	font-size: 14pt;
	font-size-adjust: from-font;

	line-height: 1.5em;
	word-spacing: 0.05ch;
}

body {
	font-family: 'Montserrat-Regular';
	margin: 0;
	padding: 5em;

	display: flex;
	flex-direction: column;

	overflow-x: hidden;
}

body > * {
	width: 100%;
	max-width: 65ch;
	margin: 0 auto;
}

h1 {
	font-family: 'Montserrat-Bold';
	line-height: 0.8em;
	font-size: 64px;
}

h2 {
	color: rgb(0, 139, 68);
	font-size: 20px;
	position: absolute;
	top: 80px;
}

h3 {
	color: rgb(170, 170, 170);
	font-size: 22px;
}

footer .copyright {
	font-family: 'Montserrat-Regular';
	font-size: 14px;
	color: indianred;
	position: fixed;
	bottom: 0;
	right: 0;
	padding: 0.5em;
}

.button {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1em;
	margin-top: 10vh;
}

.button1, .button2 {
	font-family: 'Montserrat-Regular';
	padding: 9px 54px;
	border-radius: 100px;
	border: 1px solid rgb(0, 139, 68);
	cursor: pointer;
	transition: background-color 0.2s;
}

.button1 {
	background-color: rgb(0, 139, 68);
}

.button1:hover {
	background-color: rgb(50, 159, 104);
}

.button2 {
	background-color: rgb(34, 32, 32);
}

.button2:hover {
	background-color: rgb(50, 159, 104);
}

a {
	color: rgb(255, 255, 255);
	text-decoration: none;
}

@font-face {
	font-family: 'Montserrat-Regular';
	font-style: normal;
	font-weight: normal;
	src: local('Montserrat-Regular'), url('Montserrat-Regular.ttf') format('truetype');
}

@font-face {
	font-family: 'Montserrat-Bold';
	font-style: normal;
	font-weight: normal;
	src: local('Montserrat-Bold'), url('Montserrat-Bold.ttf') format('truetype');
}

@media (max-width: 480px) {
    body {
        font-size: 12px;

        display: flex;
        flex-direction: column;

        overflow-y: hidden;
    }

    h1 {
        font-size: 48px;
        width: 100%
    }

    h2 {
        font-size: 14px;
        position: absolute;
        padding: 8px 2px;
        top: 40px;
        width: 100%;
    }

    h3 {
        font-size: 18px;
        padding: 8px 2px;
        width: 100%;
    }

    .button1, .button2 {
        font-size: 16px;
        text-align: center;
        padding: 8px 21px;
        width: 100%;
    }

    footer .copyright {
        position: fixed;
        bottom: 0;
        right: 0;
    }
}