:root {
  --blue: #0f2747;
  --blue-deep: #0b1f39;
  --orange: #e58a2b;
  --green: #b7d63d;
  --white: #faf8f3;
  --cream: #f2e7c9;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(53, 106, 154, 0.18), transparent 38%),
    linear-gradient(180deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: var(--white);
  font-family: "Lato", Arial, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1 {
  margin-top: 0;
}

.notice-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 36px 24px;
}

.notice-card {
  width: min(100%, 1180px);
  padding: clamp(42px, 6vw, 72px) clamp(28px, 5vw, 64px);
  text-align: center;
}

.notice-logo {
  width: min(100%, 820px);
  margin: 0 auto 58px;
}

.notice-card h1 {
  margin-bottom: 34px;
  color: var(--green);
  font-size: clamp(2.5rem, 7vw, 5.6rem);
  line-height: 0.98;
  font-weight: 900;
}

.notice-card p {
  width: min(100%, 1360px);
  margin: 0 auto 34px;
  font-size: clamp(1.05rem, 2.1vw, 2rem);
  line-height: 1.28;
  font-weight: 400;
  letter-spacing: 0;
}

.notice-footer {
  margin-top: 24px;
}

.notice-date {
  margin-bottom: 6px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  font-weight: 500;
}

.notice-footer a {
  font-size: clamp(1.05rem, 1.8vw, 1.7rem);
  font-weight: 400;
  opacity: 0.95;
}

.notice-footer a:hover {
  color: var(--cream);
}

@media (max-width: 720px) {
  .notice-page {
    padding: 24px 16px;
  }

  .notice-card {
    padding: 28px 10px 34px;
  }

  .notice-logo {
    width: min(100%, 420px);
    margin-bottom: 22px;
  }

  .notice-card h1 {
    margin-bottom: 24px;
  }

  .notice-card p {
    margin-bottom: 22px;
    line-height: 1.34;
  }
}
