:root {
  --blue-160: #1d3358;
  --blue-100: #207dca;
  --blue-1: #dde9fe;
  --yellow-100: #fdd277;
  --yellow-200: #fdc54e;
  --gray: #ecf1ef;
  --white: #fff;
}

@font-face {
  font-family: "Lato";
  src: url("./assets/fonts/lato-400.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  src: url("./assets/fonts/lato-600.woff2") format("woff2");
  font-display: swap;
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("./assets/fonts/roboto-400.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--gray);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  color: var(--blue-100);
  font-family: Lato, Arial, Helvetica, sans-serif;
  background:
    linear-gradient(270deg, rgb(255 255 255 / 15%) 0, var(--gray) 66%),
    url("./assets/background-resized-mobile.jpg");
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 500px auto;
  overflow-x: hidden;
}

a {
  color: inherit;
  overflow-wrap: anywhere;
  text-decoration-color: rgb(32 125 202 / 45%);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition:
    color 150ms ease,
    text-decoration-color 150ms ease;
}

a:hover {
  color: var(--blue-160);
  text-decoration-color: currentColor;
}

.notice-page {
  width: 100%;
  min-width: 0;
  min-height: 100vh;
  max-width: 1150px;
  margin: 0 auto;
  padding: 18px 16px 40px;
  display: flex;
  flex-direction: column;
}

.site-header {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-logo {
  width: 132px;
  height: auto;
}

.notice-card {
  width: min(100%, 760px);
  min-width: 0;
  max-width: 760px;
  margin: 52px auto 0;
  padding: 30px 24px 32px;
  border-radius: 10px;
  background:
    linear-gradient(165deg, rgb(255 255 255 / 0%) 12%, var(--white) 0),
    var(--white);
  box-shadow:
    0 34px 54.9px rgb(38 12 11 / 15%),
    0 0 9px rgb(0 0 0 / 6%);
}

.notice-card p {
  width: 100%;
  max-width: 640px;
  margin: 0;
  color: var(--blue-100);
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.signature {
  font-family: Lato, Arial, Helvetica, sans-serif;
  font-weight: 600;
}

@media (min-width: 768px) {
  body {
    background-size: 800px auto;
  }

  .notice-page {
    padding: 24px 72px 72px;
  }

  .site-header {
    min-height: 88px;
  }

  .site-logo {
    width: 180px;
  }

  .notice-card {
    margin: auto;
    padding: 58px 62px 62px;
  }

  .notice-card p {
    font-size: 20px;
    line-height: 1.75;
  }
}

@media (min-width: 1024px) {
  body {
    background:
      linear-gradient(270deg, rgb(255 255 255 / 15%) 0, var(--gray) 40%),
      url("./assets/background-resized-main.jpg");
    background-repeat: no-repeat;
    background-position: 100% 0;
    background-size: 1000px auto;
  }

  .notice-page {
    padding-inline: 24px;
  }

  .notice-card {
    margin-block: auto;
  }
}

@media (min-width: 1280px) {
  body {
    background:
      linear-gradient(270deg, rgb(255 255 255 / 15%) 0, var(--gray) 80%),
      url("./assets/background-resized-main.jpg");
    background-repeat: no-repeat;
    background-position: 100% 0;
    background-size: 1000px auto;
  }

  .notice-page {
    padding-inline: 0;
  }
}
