/* The dumbest CSS file ever */

body {
	background: linear-gradient(135deg, #ffcc00, #ff6600);
	color: #333;
	font-family: 'Comic Sans MS', 'Arial', sans-serif;
}

.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.hero-section h1 {
	font-size: 4rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.countdown {
	font-size: 2rem;
	background: rgba(255, 255, 255, 0.8);
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media only screen and (min-width: 992px) {
	.countdown {
		max-width: 75%;
	}
}

.joke-card {
	transition: transform 0.3s;
}

.joke-card:hover {
	transform: scale(1.05);
}

.signup-form input {
	border-radius: 50px;
}

.signup-form button {
	border-radius: 50px;
	padding: 10px 30px;
}

footer {
	background: #333;
	color: #fff;
	padding: 20px 0;
}

.social-icons a {
	color: #ffcc00;
	font-size: 1.5rem;
	margin: 0 10px;
	transition: color 0.3s;
}

.social-icons a:hover {
	color: #ff6600;
}

/* Ulititites */

@media only screen and (min-width: 992px) {
	.mw-lg-75 {
		max-width: 75%;
	}
}
