body, html {
	margin: 0;
	padding: 0;
	height: 100%;
	overflow: hidden;
	background-color: red;
  }
  
  .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100vh;
	text-align: center;
  }
  
  h1 {
	text-shadow: black 0 0 10px;
	font-size: clamp(2rem, 5vw, 5rem);
	line-height: 4rem;
	font-family: sans-serif;
	color: white;
	margin: 12rem 1rem 0 1rem;
  }

  img {
	margin-top: 4rem;
	max-width: 8rem;
  }