* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	text-align: center;
	font-family: 'Jost', sans-serif !important;
	background: url('/bg.svg') no-repeat center center/cover;
}

a:hover {
	text-decoration: none !important;
}

#header1{
	font-size: 1.5rem;
	font-weight: bold;
	color: #fff;
}
 
.con1 {
	flex-grow: 1;
	padding: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.con2 {
	background: rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(12px);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 0.5rem;
}

.con3 {
	padding-top: 2rem;
	display: flex;
	gap: 1rem;
}

#theFooter {
	padding: 1rem;
	text-align: center;
}

.my-btn {
	font-size: 1rem;
	text-decoration: none;
	background: #c62368;
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	border: none;
}

.my-btn:hover{
	background: #fff;
	color: #c62368 !important;
}