@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');



*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 11px;
  font-family: "Inter", Tahoma, "Segoe UI", Verdana, sans-serif;
  color: #000000;
  background: #008080;
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

p {
  line-height: 1.6;
  margin-bottom: 8px;
}

a {
  color: #0000cc;
}

a:visited {
  color: #551a8b;
}

h1 {
  font-size: 16px;
  font-weight: bold;
}

h2 {
  font-size: 13px;
  font-weight: bold;
}

h3 {
  font-size: 11px;
  font-weight: bold;
}

ul,
ol {
  padding-left: 16px;
}

li {
  line-height: 1.6;
}

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

hr {
  border: none;
  border-top: 1px solid #808080;
  margin: 12px 0;
}

::selection {
  background: #316ac5;
  color: #fff;
}