@charset "UTF-8";

html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box !important;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  color: #222;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-feature-settings: "palt" 1;
  font-optical-sizing: auto;
  font-kerning: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 1280px;
  height: 100vh;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

h1 {
  width: 100%;
  margin: 0;
  padding: 25vh 10% 15px;
  text-align: center;

  & img {
    width: 100%;
    max-width: 640px;
    height: auto;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

p {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
  padding: 0 20px;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0.05rem;

  &.lg {
    font-size: 32px;
    font-weight: bold;
    font-weight: 700;
  }

  & .bold {
    font-size: 21.5px;
    font-weight: bold;
    font-weight: 700;
  }
}

.copyright {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%, 0);
  display: block;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  h1 {
    padding-left: 0;
    padding-right: 0;
  }

  p {
    font-size: clamp(16px, 17px, 5vw);

    &.lg {
      font-size: clamp(20px, 22px, 5.25vw);
    }
    & .bold {
      font-size: clamp(16px, 17px, 5vw);
    }
  }
}