<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@media (max-width: 768px) {
	body {
		padding: 0px;
	}
	
	button {
		font-size: 12px; /* Smaller font size for tablets and mobile devices */
		padding: 10px; /* Smaller padding for tablets and mobile devices */
	}
	
	.bigger {
		font-size: 16px; /* Adjust as needed */
		line-height: 20px; /* Adjust as needed */
	}
	
	#buttons {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	#wordchecker {
		width: 100%; /* Full width */
		margin-bottom: 10px; /* Added margin-bottom for spacing */
	}
	
	#little-help, #shuffle, #lotta-help {
		width: calc(33.33% - 10px); /* Adjusted width */
		box-sizing: border-box;
		font-size: 10px;
		margin: 5px; /* Adjusted margin for spacing */
	}
	
	#button-container {
		display: flex;
		width: 100%;
		justify-content: space-around;
	}
	
	#button-container input[type="button"]:not(:last-child) {
		margin-right: 3px;
	}
	
	#giveup {
		width: 80%; /* Less than full width */
		margin: 10px auto; /* Centered and added margin for spacing */
	}
	
	.container {
		width: 100%;
	}
	
	
}</pre></body></html>