:root {
	--accent: #062447;
	--secondary: #CBCBCB;
}

@font-face {
    font-family: 'Nikkyou Sans';
    src: url('../fonts/Nikkyou-Sans.woff2') format('woff2'),
        url('../fonts/Nikkyou-Sans.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



body,
html {
	font-size: 1rem;
	background-color: white;
	min-width: 100%;
	min-height: 100vh;
	font-family: 'Nikkyou Sans', Arial, Helvetica, sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	position: relative;
}

.wrapper {
	display: flex;
	min-width: 100%;
	min-height: 100vh;
	flex-direction: column;
	padding: 4.375rem 2rem;
    justify-content: center;
    align-items: center;
}

.content {
	margin: auto;
	margin-top: 12rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	text-align: center;
	justify-content: center;
	align-items: center;
	color: var(--accent);
}

.content h2 {
	font-size: 2.5rem;
}

.content h4 {
	font-size: 1.25rem;
}

.content .logo {
	width: 76px;
	height: 56px;
	color: var(--accent);
	margin-bottom: 74px;
}

.content .logo #cursor {
	animation: 1s blink step-end infinite;
}

a {
	color: var(--secondary);
	text-decoration: none;
	transition: opacity 0.15s ease-in-out;
	outline: 0;
}

a:hover,
a:focus {
	opacity: 0.7;
}

a svg {
	width: 1.75rem;
	height: 1.75rem;
}


@media screen and (max-width: 480px) {
    .content h2 {
        font-size: 2rem;
    }
    
    .content h4 {
        font-size: 1rem;
    }

	.content {
		margin-top: auto;
	}
}

@keyframes blink {
	from, to {
	  opacity: 0;
	}
	50% {
	  opacity: 1;
	}
  }