@charset "utf-8";
/* CSS Document */

@font-face{
    font-family:'butterflykids';
    src: url('/assets/fonts/ButterflyKids-Regular.ttf')  format('truetype');
}

@font-face{
    font-family:'playtime';
    src: url('/assets/fonts/Playtime.otf')  format('opentype');
}

html {
    margin: 0px;
    padding: 0px;

    height: 100%;

    -webkit-tap-highlight-color: rgba(0,0,0,0);

    background-image: linear-gradient(to right bottom, #81cdf7, #5fb6ef, #409ee7, #2885dc, #236ccf);

    overflow: hidden !important;
}

body {
    margin: 0px;
    padding: 0px;

    width: 100%;
    height: 100%;

    overflow: auto;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    font-family: Arial, Helvetica, Verdana, sans-serif;
    color: #ffffff;
    line-height: 30px;
    font-size: 14px;
    text-align: center;
}

h1{
    position: relative;
    display: block;

    font-family:butterflykids;
    color: #FFFFFF;
    line-height: 30px;
    font-size: 40px;

    z-index: 1000;
}

#bear{
    position: absolute;
    display: block;

    margin: 0 auto;
    padding: 0px;

    bottom: 50px;
    left: 30px;

    width: 200px;
    height: 200px;
}

#toc{
    position: relative;
    display: block;

    margin: 0 auto;
    padding: 0px;

    top: 0px;
    left: 0px;
    right: 0px;

    width: 200px;
    height: auto;

    font-family:butterflykids;
    color: #FFFFFF;
    line-height: 30px;
    font-size: 28px;
    text-align: center;
}

#toc ul{
    position: relative;
    display: block;

    margin: 0px;
    padding: 0px;

    left: 0px;

    width: auto;
    height: auto;
}

#toc li{
    position: relative;
    display: block;

    margin: 0px;
    padding: 10px;

    left: 0px;

    width: auto;
    height: auto;

    font-family: Arial, Helvetica, Verdana, sans-serif;
    color: #16d3ff;
    line-height: 20px;
    font-size: 20px;
    cursor: pointer;
    list-style-type: none;
    text-align: center;
    font-weight: 800;

    border-radius: 15px;
    background-color:rgba(255,255,255,0.3);

    border: 2px #ffffff solid;
}

.title-holder-letter{
    font-family:playtime;
    color: #ffffff;
    line-height: 30px;
    font-size: 40px;
    text-align: center;
}


a{
    text-decoration: none;
}