* {
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 1560px;
  min-width: 1240px;
  box-sizing: border-box;
  margin: 20px auto;
  color: #333;
}

.container * {
  box-sizing: border-box;
}

header {
  text-align: center;
  margin-bottom: 20px;
}

header h1 {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 5px;
}

header p{
  font-size: 15px;
  color: #7f8c8d;
  max-width: 95%;
  margin: 10px auto;
}

.attention {
	font-weight: bold;
	color: #ff6b6b;
}

.svg-container {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

svg {
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
}

.buttons {
	display: flex;
	text-align: center;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
}

button {
	width: 200px;
	padding: 12px 20px;
	background: transparent;
	border-width: 2px;
	font-size: 16px;
	border-color: #333;
	color: #333;
	font-weight: bold;
	user-select: none;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.75);
}

button:hover {
	background: #333;
	color: white;
	transform: translateY(-2px);
	box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.75);
}

button:active {
	background: rgb(65, 65, 65);
	box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.75);
	transform: translateY(0);
}

.footer {
	margin-top: 30px;
	text-align: center;
	color: #666;
	font-size: 14px;
}