@charset 'utf-8';

html, body {
  width: 100%;
}

body {
  background: #363f48;
  font-family: sans-serif;
  font-size: 12pt;
  font-weight: 300;
  line-height: 1.75em;
  color: #ffffff;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none;
  outline: none;
  pointer-events: auto;
}

main {
  width: 70vw;
  box-sizing: border-box;
  padding: 12vh 40px 12vh 140px;
  position: relative;
}

main::before, main::after {
  content: '';
  display: block;
  width: 100%;
  height: 14vh;
  position: fixed;
  left: 0;
}

main::before {
  top: 0;
  background: url('../images/fade-to-top.svg') 0 0/auto 100%;
  pointer-events: none;
}

main::after {
  bottom: 0;
  background: url('../images/fade-to-bottom.svg') 0 0/auto 100%;
  pointer-events: none;
}

.hidden {
  display: none;
}

@keyframes fade {
  0% { display: none; opacity: 0; }
  1% { display: block; opacity: 0; }
  100% { display: block; opacity: 1; }
}

h1, h2 {
  font-weight: 600;
}

h1 {
  font-size: 18pt;
  margin-top: 10px;
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-align: justify;
}

h2 {
  font-size: 16px;
  margin-top: 40px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

p {
  font-size: 15px;
}

img {
  margin: 30px 0;
  height: 400px;
  width: auto;
}

#top {
  height: 150px;
  width: 150px;
}

h3 {
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 60px;
}

.buttons {
  margin-bottom: 30px;
}

.button-stroked {
  font-size: 15px;
}

.button-stroked:hover {
  color: #83d3a4;
  transition: color 0.3s ease;
}

#button-current {
  color: #83d3a4;
}

hr {
  margin-top: 60px;
}