/* Reset and Base Styles */
*,
*::before,
*::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  color: inherit;
}

html,
body {
  position: relative;
  width: 100%;
  height: 100%;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1;
  margin: 0;
  padding: 0;
  background: #f0f0f0;
}

/* Use project fonts from assets directory */
@font-face {
  font-family: 'Libre Franklin';
  src: url(../../../assets/fonts/LibreFranklin-Medium.ttf) format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Libre Franklin';
  src: url(../../../assets/fonts/LibreFranklin-Bold.ttf) format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* Main container styles */
body .container {
  max-width: 960px;
  width: 100%;
  padding: 48px 32px;
  margin: 0 auto;
  height: 100vh;
  display: flex;
}

@media (max-width: 500px) {
  body .container {
    padding: 48px 16px;
  }
}

body .container > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Logo styles */
body .container .img-1 {
  width: 112px;
  height: 42px;
  margin-bottom: 48px;
}

/* Typography */
body .container .part h2 {
  color: #005c27;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0;
  margin-bottom: 24px;
}

body .container .part p {
  color: #525252;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0;
}

body .container .part p + p {
  margin-top: 16px;
}

body .container .part a {
  color: #f60;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
