/**
    * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
    * http://cssreset.com
    */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/*----------------------------------------------------------------------------------------------------------------------------
    GLOBAL
------------------------------------------------------------------------------------------------------------------------------*/
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.clear {
  font-size: 0em;
  line-height: 0em;
  height: 0px;
  position: relative;
  clear: both; }

html, body {
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent; }

img {
  color: transparent; }

body {
  margin: 0;
  padding: 0; }

svg {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100vh;
  max-width: 30em;
  margin: 0 auto; }

use, path:nth-child(2) {
  animation: waves 60s linear infinite; }

@keyframes waves {
  0% {
    stroke-dasharray: 120 20; }
  100% {
    stroke-dasharray: 120 20;
    stroke-dashoffset: 12000; } }

svg > g {
  transform-origin: 50% 50%;
  animation: pulse ease .2s infinite alternate; }
  svg > g:nth-child(2) {
    animation-delay: .1s; }

@keyframes pulse {
  0% {
    transform: scale(0.995); }
  100% {
    transform: scale(1); } }

path:nth-child(2) {
  opacity: 1; }

path {
  fill: pink; }

/* COLORIZE DEE BRAAAIN */
body {
  background-color: #f9bebd;
  color: #856357; }

path {
  fill: #b4dbc0; }
