* {
	text-align: center;
	font-family: "Roboto", sans-serif;
	margin: 0;
	padding: 0;
}

body {
	background-color: #05001c;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	color: #f5f5f5;
}

h1 {
	font-size: 3rem;
	text-decoration: solid underline #f5f5f5;
}

h2 {
	font-size: 2rem;
}

button {
	background-color: #15226b;
	color: white;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	border-radius: 5px;
	outline: solid 3px #2438ac;
	cursor: pointer;
	width: min-content;
	font-size: 1.3rem;
}

.container {
	width: 100%;
	height: 70vh;
	display: flex;
	gap: 3rem;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.button-container {
	display: flex;
	gap: 5rem;
	justify-content: center;
	align-items: center;
}

#checkPopup {
	display: none;
	/* display: flex; */
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 1;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	height: 30%;
	border-radius: 10px;
	background-color: rgb(0, 0, 0);
}

#checkPopup p {
	color: white;
	font-size: 1.5rem;
}

#changeAmountButton {
	background-color: #2438ac;
	color: white;
	padding: 14px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	width: auto;
	font-size: 0.9rem;
}
