/* MouseCake: 字体 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/inter-light.woff2?v=3.13") format("woff2"),
    url("../fonts/inter-light.woff?v=3.13") format("woff");
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-regular.woff2?v=3.13") format("woff2"),
    url("../fonts/inter-regular.woff?v=3.13") format("woff");
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter-medium.woff2?v=3.13") format("woff2"),
    url("../fonts/inter-medium.woff?v=3.13") format("woff");
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter-bold.woff2?v=3.13") format("woff2"),
    url("../fonts/iter-bold.woff?v=3.13") format("woff");
}

:root {
  --font: Inter,sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  /* background-image: linear-gradient(to right top, #1a7ae0, #00a1f3, #00bfdd, #00d7aa, #7ee771); */
  background-image: linear-gradient(to left bottom, #61bb5b, #00b593, #00a7d4, #0090fe, #2c68f2);
  height: 100vh;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.header {
  height: 70px;
  display: flex;
  align-items: center;
  padding: 20px 50px;
  justify-content: space-between;
}

.header img {
  height: 70px;
}

.main-content {
  background-image: url(/assets/img/common/hero-bg.png);
  background-repeat: repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  flex: 1;
}

.main-title {
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 40px;
  text-shadow: 2px 3px 0px #898999
}

.content-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 30px;
  width: 400px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.button {
  padding: 12px 24px;
  margin: 12px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: #2c68f2;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #3662c1;
}

footer {
  padding-bottom: 10px;
  font-size: 14px;
  color: #fff;
}