html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: rgba(56, 57, 64, 0.87);
  font-family: Inter, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2 {}

h1 {
  font-size: 2em;
  margin: 20px 0;
  text-align: center;
}

h2 {
  font-size: 1.5em;
  margin-top: 30px;
  margin-bottom: 10px;
}

p {
  margin: 10px 0;
  padding: 0;
}

/* Layout */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 5px;
}

/* Links */
a {
  color: #194459;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.logo-box {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
}

.logo-img {
  height: 90px;
}

.main-title {
  margin-bottom: 30px;
}
.footer-row {
  margin-top: 45px;
}
.footer-row-inn {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-row-left {
  width: 50%;
}
.footer-row-right {
  text-align: right;
  width: 50%;
}
.footer-row-right a {
  color: #51707f;
  text-decoration: none;
  margin-left: 15px;
  transition: all 0.5s;
}

/* Accessibility */
@media (max-width: 860px) {
  .container {
    width: 100%;
    padding: 30px;
  }

  h1 {
    font-size: 1.8em;
  }

  h2 {
    font-size: 1.3em;
  }
}
