html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-width: 100vw;
  overflow-x: hidden;

  background: #c2a78a;
  background-image: linear-gradient(180deg, #c2a78a 0%, #d49e56aa 90%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#81e4ff",endColorstr="#f9caff",GradientType=1);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
a:hover {
  font-family: "Noto Sans", sans-serif;
  /* text-decoration: none; */
	background-color: none;
	color: #333;
  fill: #333;

  margin-top: 0px;
  margin-bottom: 0px;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.75em;
}

h4 {
  font-size: 1.5em;
}

ul {
  display: inline-block;
  list-style-position: inside;
}

li {
  display: list-item;
}

li,
p,
text {
  font-size: 1.2em;
}

a {
  opacity: 0.9;
  text-decoration: underline;

  transition: opacity 0.15s ease-in-out, filter 0.15s ease-in-out;
  -o-transition: opacity 0.15s ease-in-out, filter 0.15s ease-in-out;
  -ms-transition: opacity 0.15s ease-in-out, filter 0.15s ease-in-out;
  -moz-transition: opacity 0.15s ease-in-out, filter 0.15s ease-in-out;
  -webkit-transition: opacity 0.15s ease-in-out, filter 0.15s ease-in-out;
}

a:hover,
a.active {
  opacity: 1;
  filter: drop-shadow(0 0 0.3em white);
}

a:hover > img,
.active > img {
  -webkit-filter: drop-shadow(0 0 0.5em white);
  filter: drop-shadow(0 0 0.5em);
}

code {
  font-family: Consolas, "Courier New";
  color: white;
  background-color: #151515;
  padding: 0.25em 0.5em;
  border-radius: 0.25em;
  text-shadow: none;
}

img#logo {
  width: auto;
  height: 15em;
}

canvas {
  position: fixed;
  left: 0;
  top: 0;

  width: 100vw;
  height: 100vh;
}

#straw {
  color: #498cb3;
  z-index: -2;
}

#particles {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;

  pointer-events: all;
	z-index: 1;
}

#tapiocas {
  position: fixed;
  left: 0;
  bottom: 0;
  height: 15em;
  width: 100vw;

  background-size: 58.5em 15em;
  background-position-x: center;
  background-image: url("./img/tapiocas.png");
  background-repeat: repeat-x;
	z-index: -1;
}

#plastic {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;

  pointer-events: none;
  background-image: linear-gradient(to right, #00000040 0%, #ffffff10 35%, #ffffff10 65%, #00000040 100%);
  z-index: 5;
}

#content {
  max-width: 75em;
  margin: 5em;
  margin-left: auto;
  margin-right: auto;

  padding: 2.5em 5em;

  text-shadow: 0em 0em 0.5em white;
}

.noise {
  position: relative;
}

.noise::before {
  background: url(./img/noise.png);
  content: "";
  position: absolute;
  float: right;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.placard {
  background: #eeeeeeee;
  border-radius: 3em;
  padding: 2.5em 5em;
}

.no-pointer {
  pointer-events: none;
}

.decal {
  z-index: 50 !important;
}

.pointer-events {
  pointer-events: all;
  z-index: 50 !important;
}
