/* Main */
@font-face {
  font-family: SimpleJoys;
  src: 
   url('https://s0.2mdn.net/creatives/assets/2404889/SimpleJoys.woff') format('woff'),
   url('https://s0.2mdn.net/creatives/assets/2404889/SimpleJoys.woff2') format('woff2'),
   url('https://s0.2mdn.net/creatives/assets/2404889/simplejoys.ttf') format('ttf');
}

body, html, body, * {
	margin: 0px;
	padding: 0px;
	border: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}

#bubbleworks{
    /*position: relative;
    overflow: hidden;
    height: 100%;*/
    position: absolute;
    overflow: hidden;
    height: 100%;
    width: 100%;
    background-color: blue;

}

#octopus{
    position: relative;
    z-index: 5;
    width: 473px;
    height: 464px;
    background-image: url(images/octopus.png);
        position:absolute; /*it can be fixed too*/
        left:0; right:0;
        top:0; bottom:0;
        margin:auto;

        /*this to solve "the content will not be cut when the window is smaller than the content": */
        max-width:100%;
        max-height:100%;
        overflow:auto;
}

#marquee{
    position: absolute;
    z-index: 5;
    width: 100%;
    top: 10%;
    text-align: center;
    color: lightblue;
    font-size:23px;

}