@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;900&display=swap");

body {
	background-color: var(--bs-primary);
}

main {
	min-height:100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top:3rem;
	padding-bottom:3rem;
}
aside {
	display: flex;
	flex-direction: column;
	flex-wrap:wrap;
	align-items: center;
	align-content: center;
	
}
aside img {
	width:75%;
}
aside .banner-box {
	position:relative;
	display: flex;
	justify-content: center;
}
aside .title {
  font-size:8rem;
	font-weight: 900;
  letter-spacing:10px;
  font-family: "Poppins";
  margin:40px auto;
white-space: nowrap;
	color:#fff;
	 text-shadow: 
    2px 2px 0px black, 
    -2px -2px 0px black,  
    2px -2px 0px black, 
    -20px 10px 0px black; 
	text-align: center;
	line-height: 1;
	position: absolute;
	top:50%;
	transform: translateY(-50%);
}
