.header-buttons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  justify-content: center;
  margin-bottom: 10px;
}

.header-btn {
  background-color: #d32f2f;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s ease;
  min-width: 178px;
  text-align: center;
}

.header-btn:hover {
  background-color: #b71c1c;
}

.tips {
        margin-top: 20px;
        font-size: 18px;
        font-weight: bold;
        color: #cd2e0d;
      }

.mdui-color-blue {
	background-size: 100%;
      background-repeat: no-repeat;
      background-image: url('../img/01.jpg');
      background-attachment: fixed;
}
*{
	margin: 0;
	padding: 0;
}
.box{
    width: 650px;
    height: auto;
    margin: 0 auto;
    padding: 10px;
    border-radius: 15px;
    background-color: #f4f4f4;
    margin-top: 100px;
    padding-bottom: 36px;
}
.box h1{
	text-align: center;
	color: #474747;
}
.box p{
	text-align: center;
	color: #fff;
	background-color: #cd2e0d;
	padding: 10px 10px;
	border-radius: 8px;
}
.box ul{
	margin-top: 25px;
	margin: 50px 15px 0px 15px;
}
.box ul li{
	list-style: none;
	margin-top: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.box ul li a{
	text-decoration: none;
	color: #fff;
	padding: 12px 50px;
	border-radius: 50px;
	font-size: 17px;
	background-color: #b7230e;
}
/* .box ul li i{
	
} */
.footer{
	width: 650px;
	text-align: center;
	color: #111214;
	background-color: #fff;
	padding: 10px 10px;
	border-radius: 8px;
	margin: 30px auto;
}
@media only screen and (max-width: 500px) {
    .box{
		width: 96%;
		margin-top: 50px;
		
	}
	.box ul li a{
		text-decoration: none;
		color: #fff;
		padding: 10px 20px;
		border-radius: 50px;
		font-size: 15px;
		background-color: #cd2e0d;
	}
	.footer{
		width: 96%;
		text-align: center;
		color: #090a0c;
		background-color: #fff;
		padding: 10px 10px;
		border-radius: 8px;
		margin: 30px 10px;
	}
}
