@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

html {
	font-family: "Inter", sans-serif;
	font-size: 100%;
}

body {
	background-image: url("/assets/img/background-e-magine.svg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	display: flex;
	align-items: center;
	justify-content: center;
	align-content: center;
	height: 100dvh;
}

.logo-img {
	width: 200px;
}

.content {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 1.5rem;
}

.presentation {
	margin-top: 2rem;
	text-align: center;
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 1rem;
}

.presentation span {
	font-size: 1.5rem;
}

a {
	border: none;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	border-radius: calc(0.5rem - 2px);
	background-color: hsl(145 63.2% 49%);
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	font-weight: 700;
	transition: ease-in-out 0.2s;
	&:hover {
		background-color: hsl(145, 69%, 52%);
	}
}
