@charset "UTF-8";


/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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;
    text-rendering: optimizeLegibility;
    /* Font smoothing */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
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;
}

a {
  text-decoration: none;
}


/* CSS Document */


html, body {
    font-family: 'Switzer', Helvetica, sans-serif;
    background-color: #eeeeee;
    /*cursor: url("../images/cursor.png"), auto;*/

}

/*#mouse-circle {
    position: fixed;
    width: 100px;
    height: 100px;
    margin: -32px 0px 0px -32px;
    border: 0px solid #5affae;
    background-color: #5affae;
    border-radius: 50%;
    pointer-events: none !important;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0);
    mix-blend-mode: multiply;
}*/


/* STYLING ------------------------ */

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.wrapper {
  margin: 30px;
  opacity: 0;
  animation: fadein 0.8s .5s forwards;  
}

h1, h2, p, a {
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: -0.8px;
  color: black;
}

.button {
  position: fixed;
  bottom: 0;
  left: 0;
  /*border: 2px solid #5affae;*/
  background-color: #ffffff;
  border-radius: 99px;
  padding: 4px 14px 6px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 30px;
  opacity: 0;
  animation: fadein 0.8s 0.8s forwards;  
  cursor: pointer;
  box-shadow: inset 0 0 0 0.09px #5affae;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}

.button:hover,
.button:focus {
  box-shadow: inset 240px 0 0 0 #5affae;
}

