body {
	margin: 0;
	text-align: center;
	background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
	font-family: "Libre Baskerville", serif;
	display: flex;
	flex-direction: column;
	height: 100vh;
}

.title {
	margin-top: 50px;
	margin-bottom: 10px;
	font-size: 2em;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.container {
	flex: 1;
	display: flex;
	flex-direction: column;
}

p {
	font-size: 1.0rem;
}

.buttons {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-top: 50px;
}

.btn {
	width: 150px;
	height: 150px;
	font-family: "Libre Baskerville", serif;
	border-radius: 50%;
	color: white;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
	border: none;
	font-size: 1.5em;
	cursor: pointer;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 20px rgba(112, 128, 144, 0.6);
}

.btn:hover {
	filter: brightness(1.1);
	transform: scale(1.1) rotate(2deg);
}

.wow-btn {
	background-color: tomato;
}

.nothing-btn {
	background-color: tan;
}

.ad-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  width: 100%;
}

.ad-container ins {
  display: block;
  min-width: 300px;   /* Minimum for mobile */
  max-width: calc(100vw - 20px);
}

footer {
	padding: 10px;
}

footer a {
  margin: 0 10px;
  color: #444;
  text-decoration: none;
  transition: color 0.3s, text-shadow 0.3s;
}
footer a:hover {
  color: #000;
  text-shadow: 0 0 5px rgba(0,0,0,0.3);
}