@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
	font-family: "Kanit", sans-serif;
	color: white;
	position: relative;
	height: 100vh;
	width: 100vw;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(-45deg, #29396b, #27497c, #1c4d7c, rgb(12, 82, 104));
	background-size: 400% 400%;
	animation: gradient 30s linear infinite;
	height: 100vh;
	-webkit-animation: gradient 30s linear infinite;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
body::after {
    content: "";
    position: absolute;
    top: -10%;
    bottom: -10%;
    left: -10%;
    right: -10%;
    opacity: 5%;
    background-image: url(/images/ntg-light.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}
h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
    letter-spacing: 0.15rem;
}
h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0;
    opacity: 0.8;
}