html{
	scroll-behavior: smooth;
	height: 100%;
	}

/* ZEROING OUT STYLES ------------------*/
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	}
body, input, button, select, option, textarea {
  	font-family: Arial, Helvetica, Nimbus Sans L, Liberation Sans, FreeSans, sans-serif;
  	font-size: 1rem;
  	line-height: 1.5;
  	color: #000;
  	background-color: #fff;
	}
body{
	height: 100%;
  	margin: 0;
  	background-repeat: no-repeat;
  	background-attachment: fixed;
	}

.container{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	height: 100vh;
	}	

.wrapper{
	margin-top: 1rem;
	max-width: 700px;
	padding: 2rem;
	text-align: center;
	}
.wrapper img{
	margin: 0 auto 1rem auto;
	max-width: 400px;
	}	

.wrapper p{ font-size: 1.15rem; }

.button-grid{
	margin-top: 2rem;
	display: grid;
	gap: 1rem;
	}

.container button{
	padding: 1.25rem 1.5rem;
	font-weight: bold;
	border-radius: .75rem;
	background-color: #ffc627;
	border: none;
	cursor: pointer;
	width: 100%;
	transition: transform 0.2s ease-in-out;
	line-height: 1.25rem;
	}	
.container button:hover{
	transform: scale(1.1);
	}

.container button.grey{ background-color: #efefef; }


@media print, (min-width:580px) {

	.button-grid{
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem;
	}

}