html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
body {
	font-family: sans-serif;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem 4rem;
	flex-direction: column;
	gap: 1rem;
	max-width: 1024px;
	margin: 0 auto;
}


.title_wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 2rem;
	font-size: large;

}
@media (min-width: 600px) {
	.title_wrap {
		flex-direction: row;
		font-size: xx-large;


	}
}
.header {
	font-size: 2rem;
	text-align: center;
	padding: 2rem;
}
.link {
	padding: 1rem 2rem;
	background-color: cornflowerblue;
	border-radius: 1rem;
	text-decoration: none;
	color: #fff;
}
.footer-info > p {
	text-align: center;
}
.footer-info {
	padding-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem
}
footer {
	text-align: center;
	padding: 1rem;
}
a {
	text-decoration: none;
}

.flex-grow {
	flex-grow: 1;
}