@charset "UTF-8";

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background-color: #f3ebe4;
	font-family: vinila, sans-serif;
	text-align: center;
}

.container {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin: 0 auto;
	max-width: 900px;
}

.inner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 30px 60px;
  height: 100dvh;
}

h1 {
  margin-top: 0;
  margin-bottom: 10px;
	font-family: vinila-extended, sans-serif;
  font-size: 50px;
	line-height: 1em;
}

p {
  margin: 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5em;
}

a {
  text-decoration: none;
  font-weight: 600;
}

p a {
  white-space: nowrap;
}

.logo-mark {
	margin-top: auto;
}

.logo {
	height: 50px;
	margin-top: auto;
}

@media (max-width: 995px) {
	h1 {
		font-size: 34px;
	}
	
	p {
		font-size: 16px;
	}
}

/* LOGO MARK ANIMATION */
#rseftf-logomark {
  --wink-dur: 180ms; /* very fast; tweak if needed */
  display: block;
	width: 230px;
	padding-right: 30px;
	margin-bottom: 20px;
}

#rseftf-logomark #open {
	opacity: 1;
}

#rseftf-logomark #close {
	opacity: 0;
}

#rseftf-logomark:hover #open,
#rseftf-logomark:active #open,
#rseftf-logomark:focus-visible #open {
  animation: winkOpen var(--wink-dur) steps(1, start) 1;
}

#rseftf-logomark:hover #close,
#rseftf-logomark:active #close,
#rseftf-logomark:focus-visible #close {
  animation: winkClose var(--wink-dur) steps(1, start) 1;
}

@keyframes winkOpen {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes winkClose {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}