@charset "UTF-8";
/* CSS Document */

* {
	box-sizing: border-box;
}

.body {
	background-color: black;
	background-image: -webkit-linear-gradient(270deg,rgba(0,0,0,0.20) 0%,rgba(0,0,0,0.70) 100%), url(../img/bg-04.jpg);
	background-image: -moz-linear-gradient(270deg,rgba(0,0,0,0.20) 0%,rgba(0,0,0,0.70) 100%), url(../img/bg-04.jpg);
	background-image: -o-linear-gradient(270deg,rgba(0,0,0,0.20) 0%,rgba(0,0,0,0.70) 100%), url(../img/bg-04.jpg);
	background-image: linear-gradient(180deg,rgba(0,0,0,0.20) 0%,rgba(0,0,0,0.70) 100%), url(../img/bg-04.jpg);
	background-repeat: no-repeat;
	color: #FFFFFF;
	background-size: cover;
	overflow: hidden;
	font-family: serif;
	font-size: 18px;
	line-height: 1.6;
	background-position: 50% 50%;
}
a{
	color: white;
	text-decoration: none;
}
a:hover{
	color: #ff9a00;
}
h1{
	font-size: 1.75rem;
	font-weight: bolder;
}

.main-wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100svh;
	width: 100%;
	padding: 2rem;
}

.content-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: space-between;
	flex-grow: 1;
}

.logo-wrapper > img {
	max-width: 8rem;
}