@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap');

/* Basic CSS Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: rgb(161, 100, 223);
	font-family: Poppins, sans-serif;
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	height: 100vh;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

input,
button,
textarea,
select {
	font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

.btn {
	background-color: #639;
	border-radius: 5px;
	border: none;
	color: #fff;
	padding: 1.5rem 3rem;
	margin: 1rem;
	font-size: 1.2rem;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.btn:hover {
	opacity: 0.9;
}

.btn:focus {
	outline: none;
}

.btn:active {
	transform: translateY(1px);
}
