root { 
    display: block;
}

html {
    height: 100%;
}

body{
    background: #fbd9f2;
    background-attachment: fixed;
}

*, *:before, *:after {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
     
input, input:before, input:after {
    -webkit-user-select: initial;
    -khtml-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial;
}

::selection { background: transparent;color:inherit; }
::-moz-selection { background: transparent;color:inherit; }

#canvas{
    position: fixed;
 
}

canvas {
    image-rendering: optimizeSpeed;
    image-rendering:-o-crisp-edges;
    image-rendering:-webkit-optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
	-ms-touch-action: none;
}

.ani_hack{
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
    
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    -webkit-tap-highlight-color: transparent; /* mobile webkit */
}



/***************FONTS*******************/

@font-face {
    font-family: 'bubblegumregular';
    src: url('bubblegum-webfont.eot');
    src: url('bubblegum-webfont.eot?#iefix') format('embedded-opentype'),
         url('bubblegum-webfont.woff2') format('woff2'),
         url('bubblegum-webfont.woff') format('woff'),
         url('bubblegum-webfont.ttf') format('truetype'),
         url('bubblegum-webfont.svg#bubblegumregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

.check-fonts{
        position: fixed;
        opacity:0;
}

.check-font-1{
        font-family: 'bubblegumregular';
}

/* information */

.information-general {
    padding: 60px 20px 20px;
    font-family: "Noto Sans", sans-serif;
    background: #fbd9f2;
    color: #2b0693;
    font-size: 16px;
    line-height: 26px;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.information-block {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto 30px;
}

.information-block h1 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.information-block h2 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 14px;
}

.information-block p {
    margin-bottom: 14px;
}

.information-block a {
    font-weight: 700;
    text-decoration: none;
    color: #00192c;
}

.information-back {
    position: absolute;
    top: 14px;
    left: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-list {
    font-family: "Noto Sans", sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 14px;
    line-height: 20px;
}

.footer-list a {
    padding: 4px;
    text-decoration: none;
    color: #2b0693;
    font-weight: 600;
}

.information-general .footer-list a {
    color: #2b0693;
}