@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,regular,500,600,700,800&display=swap);
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

html,
body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

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

p {
  line-height: 150%;
}

h1 {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin: 25px 0;
}

h2 {
  font-size: 32px;
  margin: 20px 0;
  text-align: center;
  font-weight: 700;
}

h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 15px 0;
}

ol {
  list-style: decimal;
  padding: 15px 25px;
}

ul {
  list-style: disc;
  padding: 15px 25px;
}

li {
  line-height: 150%;
}

ol li::marker,
ul li::marker {
  color: #233d50;
}

table {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  overflow: auto;
}
table tr td,
table tr th {
  border: 1px solid #fff;
  padding: 15px;
}
table tr th {
  background-color: rgb(0, 76, 255);
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 20px 0;
  background-color: #ffffff;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  flex: 0 0 120px;
}
.header .auth {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header .auth .btn-1 {
  background-color: #28272c;
}
.header .auth .btn-1:hover {
  background-color: #28272c;
}
.header .auth .btn-2 {
  background-color: #49b079;
}
.header .auth .btn-2:hover {
  background-color: #49b079;
}

.btn {
  display: flex;
  justify-content: center;
  width: 150px;
  padding: 12px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.main {
  height: 100%;
  flex: 1 1 auto;
}
.main .content {
  background-color: #49b079;
  border-radius: 10px;
  padding: 32px;
  margin: 32px 0;
}
.main .content p {
  margin: 15px 0;
}
.main .content img {
  display: flex;
  margin: 0 auto;
  max-width: 500px;
}
.main__btn {
  background-color: rgb(0, 76, 255);
  margin: 0 auto;
  width: 200px;
}
.main__btn:hover {
  background-color: rgb(4, 0, 255);
}

.container {
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 16px;
}

.footer {
  padding: 30px 0;
  background-color: #000000;
}
.footer .container {
  display: flex;
  justify-content: center;
  font-size: 14px;
}

@media (max-width: 768px) {
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  h3 {
    font-size: 24px;
  }
  .container {
    max-width: 100%;
  }
  .header .container {
    flex-direction: column;
    gap: 10px;
  }
  .header .logo {
    flex: auto;
  }
  .header .logo img {
    max-width: 120px;
  }
  .main .content {
    margin: 24px 0;
    padding: 24px;
  }
  .main .content img {
    max-width: 100%;
  }
  .main__btn {
    width: 100%;
  }
}