html {
  scroll-behavior: smooth;
}
body {
  margin: 0px;
  background-color: #02060a;
  font-family: "Quicksand", ui-sans-serif, system-ui, "Roboto", sans-serif;
  user-select: none;
  -webkit-user-select: none;
  cursor: normal;
  overflow: auto;
  width: 100vw;
  height: 100vh;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
}
img {
  -webkit-user-drag: none;
  user-drag: none;
}
body header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 72px;
  color: #ffffff;
  z-index: 2;
  margin: 0px;
  padding: 0px 18px;
  font-size: 18pt;
  font-weight: 600;
  text-transform: uppercase;
  box-sizing: border-box;
  background: linear-gradient(to bottom, #767676, transparent);
}
body header ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  text-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
}
body header ul a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  transition-duration: 0.25s;
  -webkit-transition-duration: 0.25s;
  padding: 0px 18px;
}
body header ul a img {
  width: auto;
  height: 72px;
  display: inline;
}
body div.background {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: url('./visnyai_brothers_profile.jpeg') center center fixed;
  background-size: cover;
  filter: blur(3px);
  opacity: 0.5;
}
body section {
  position: relative;
  top: 0px;
  left: 0px;
  width: 100%;
  min-height: 100vh;
  height: auto;
  padding: 72px;
  margin: 0px;
  box-sizing: border-box;
}
body section:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
}
body section img.main {
  width: min(720px, 100%);
  display: block;
}
body section h2 {
  position: relative;
  font-size: 54pt;
  width: min(720px, 100%);
  text-align: center;
  padding: 0px;
  margin: 0px auto;
  color: #ffffff;
  font-weight: 600;
}
body section p {
  position: relative;
  font-size: 24pt;
  width: min(720px, 100%);
  text-align: justify;
  padding: 0px;
  margin: 18px auto;
  color: #ffffff;
  font-weight: 400;
}
body footer {
  position: relative;
  top: 0px;
  left: 0px;
  width: 100%;
  height: auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12pt;
  padding: 18px;
  box-sizing: border-box;
}
body footer img {
  width: 36px;
  height: 36px;
  display: inline-block;
  filter: brightness(0) invert(1);
}
body section a {
  color: #ffffff;
  text-decoration: underline;
}
body section a.button {
  padding: 18px;
  border-radius: 12px;
  border: 2px solid #ffffff;
  text-decoration: none;
  transition-duration: 0.25s;
  -webkit-transition-duration: 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
body section a.button:hover {
  background-color: #ffffff;
  color: #262230;
}
@media screen and (max-width: 1000px) {
  body header {
    font-size: 12pt;
  }
  body section {
    padding: 24px;
  }
  body section h2 {
    font-size: 36pt;
  }
  body section p {
    font-size: 15pt;
  }
  /* body div.background {
    background: url('./visnyai_brothers_profile.jpeg') center center fixed;
    background-size: cover;
  } */
}