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

* {
	box-sizing: border-box;
}

body {
	background-color: #686de0;
	font-family: "Roboto", sans-serif;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	/* overflow: hidden; */
	margin: 0;
	padding: 20px;
}

.container {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
	text-align: center;
	max-width: 100%;
	width: 800px;
	padding: 50px 20px;
}

h3 {
	margin: 0;
	opacity: 0.5;
	letter-spacing: 2px;
}

.joke {
	font-size: 30px;
	letter-spacing: 1px;
	line-height: 40px;
	margin: 50px auto;
  max-width: 600px;
}

.btn {
	background-color: #9f68e0;
	color: #fff;
	border: 0;
	border-radius: 10px;
	padding: 14px 40px;
	font-size: 1rem;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;	
	cursor: pointer;
}

.btn:active {
	transform: scale(.98);
}

.btn:focus {
	outline: 0;
}
