* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	font-size: clamp(18px,3vw,20px);
	font-family: 'Poppins', sans-serif;
	--text-color: #4A3F21;
	--icon-color: #AD1821;
}

html, body {
	min-height: 100vh;
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--text-color);
}

.container {
	width: min(880px, 85vw);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 80px auto;
}

h3 {
	margin-top: 1rem;
}

.logo {
	width: clamp(180px, 18vw, 240px);
	aspect-ratio: 1 / 1;
}

.text-small {
	font-size: 0.9rem;
}

.contacts {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.25rem;
	margin-bottom: 1.5rem;
}

.contacts i {
	width: 1.4rem;
	color: var(--icon-color);
}

.qr-container {
	display: flex;
	flex-wrap: no-wrap;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	width: clamp(70%, 8vw ,100%);
}

.qr-code {
	width: 160px;
	aspect-ratio: 1 / 1;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	color: var(--text-color);
}

a:hover {
	color: #967E3B;
}

.flash {
  animation: flash 1s step-start infinite;
}

@keyframes flash {
  50% {
    opacity: 0;
  }
}