body {
	margin: 0;
	font-family: "Sixtyfour", sans-serif;
	background-color: #1a0000;
	color: white;
}

.container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.danger-card {
	background-color: #330000;
	padding: 50px;
	border-radius: 32px;
	text-align: center;
	box-shadow: 0 0 50px rgba(255, 0, 0, 0.5);
}

h1 {
	margin-top: 0;
	font-size: 2rem;
	font-weight: normal;
}

p {
	margin-bottom: 30px;
	opacity: 0.8;
}

.button-group {
	display: flex;
	justify-content: center;
	gap: 20px;
}

button {
	padding: 15px 25px;
	font-size: 16px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: bold;
	font-family: "Sixtyfour", sans-serif;
}

.launch {
	background-color: crimson;
	color: white;
}

.destruct {
	background-color: darkorange;
	color: black;
}

button:hover {
	box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}
