html, body {
    margin: 0;
    padding: 0;
    background: #fff;
    color: #000;
    font-family: "Raleway", sans-serif;
    font-size: 20pt;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: background-color .5s;
    line-height: 1.5em;
}

body.on-type-main-title {
    background: #34005b;
    color: #fff;
}

.slide {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    width: 1024px;
    height: 768px;
    left: 50%;
    top: 50%;
    margin-left: calc(-1024px / 2);
    margin-top: calc(-768px / 2);
    padding: 50px;
    pointer-events: none;
    opacity: 0;
    transition: transform .5s, opacity .5s;
}

.slide-flow-prev {
    transform: translate(0, -768px);
}

.slide-flow-current {
    opacity: 1;
    pointer-events: all;
}

.slide-flow-next {
    transform: translate(0, 768px);
}

.slide-type-main-title,
.slide-type-infill-title {
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto Slab", sans-serif;
}

h2:after,
h3:after {
    content: " ";
    background-color: #ff02a7;
    display: block;
    width: 100px;
    height: 10px;
}

h1 {
    font-size: 300%;
    line-height: 1.5em;
}

h2 {
    font-size: 200%;
    color: #6441db;
    line-height: 1.5em;
}

h2:after {
    margin: 50px auto;
}

h3 {
    font-size: 150%;
    color: #34005b;
    line-height: 1.5em;
}

h3:after {
    margin: 50px 0 0 0;
}

pre {
    font-size: 80%;
    border: silver solid 4px;
    line-height: 1.5em;
    text-align: left;
}

img {
    display: block;
    margin: auto;
}

/** HOME **/

#wanaprez-home {
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto;
    font-size: 16pt;
    box-sizing: border-box;
    overflow: auto;
    height: 100%;
}

#wanaprez-home h1 {
    color: #6441db;
    text-align: center;
}

#wanaprez-home h1:after {
    content: " ";
    background-color: #ff02a7;
    display: block;
    width: 100px;
    height: 10px;
    margin: 50px auto;
}

#wanaprez-home h2 {
    color: #34005b;
    font-size: 150%;
    clear: both;
}

#wanaprez-home h2:after {
    display: none;
}

#wanaprez-home input,
#wanaprez-home textarea {
    border: silver solid 2px;
    line-height: 1.3em;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px;
}

#wanaprez-home button {
    font-family: "Cantarell", sans-serif;
    font-size: 12pt;
    display: inline-block;
    height: 40px;
    line-height: 30px;
    border-radius: 20px;
    padding: 5px 20px;
    margin: 0;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: transparent solid 1px;
    transition: background 300ms, border 300ms, color 300ms;
    box-sizing: border-box;
    border-color: transparent;
    background: #FF00A4;
    color: #fff;
    outline: none;
    min-width: 100px;
    float: right;
}

#wanaprez-home button:hover {
    border-color: #FF00A4;
    background: transparent;
    color: #FF00A4
}

#wanaprez-new {
	position: absolute;
	top: 5px;
	left:5px;
}

#wanaprez-btn-nav {
	position: absolute;
	bottom: 5px;
	left:5px;
}

#wanaprez-new span,
#wanaprez-new a,
#wanaprez-btn-nav span,
#wanaprez-btn-nav a {
	opacity: 0.05;
	display: inline-block;
	margin-right:5px;
	color:#34005b;
}

#wanaprez-new span:hover,
#wanaprez-new a:hover,
#wanaprez-btn-nav span:hover,
#wanaprez-btn-nav a:hover {
	opacity: 1;
}

.on-type-main-title > #wanaprez-new a,
.on-type-main-title > #wanaprez-new span,
.on-type-main-title > #wanaprez-btn-nav a,
.on-type-main-title > #wanaprez-btn-nav span {
	color:#fff;
}

.on-type-infill-title > #wanaprez-new a,
.on-type-infill-title > #wanaprez-btn-nav a {
	color:#34005b;
}

#wanaprez-prev-fake {
	width:20px;
	visibility: none;
}

/** Back home button **/

.gg-home-alt {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs,1));
    width: 18px;
    height: 14px;
    border: 2px solid;
    border-top: 0;
    border-radius: 2px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    margin-bottom: 0;
}
.gg-home-alt::after,
.gg-home-alt::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute
}
.gg-home-alt::before {
    border-top: 2px solid;
    border-left: 2px solid;
    border-top-left-radius: 4px;
    transform: rotate(45deg);
    top: -5px;
    border-radius: 3px;
    width: 14px;
    height: 14px;
    left: 0
}
.gg-home-alt::after {
    width: 6px;
    height: 10px;
    background: currentColor;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    left: 4px;
    bottom: 0;
}

/** Previous Button **/

.gg-arrow-left-o {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    border: 2px solid;
    transform: scale(var(--ggs,1));
    border-radius: 22px
}
.gg-arrow-left-o::after,
.gg-arrow-left-o::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    left: 4px
}
.gg-arrow-left-o::after {
    width: 6px;
    height: 6px;
    border-bottom: 2px solid;
    border-left: 2px solid;
    transform: rotate(45deg);
    bottom: 6px
}
.gg-arrow-left-o::before {
    width: 10px;
    height: 2px;
    bottom: 8px;
    background: currentColor
}

/* OR */

.gg-chevron-left-r {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs,1));
    width: 22px;
    height: 22px;
    border: 2px solid;
    border-radius: 4px
}
.gg-chevron-left-r::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid;
    border-left: 2px solid;
    transform: rotate(45deg);
    left: 7px;
    top: 6px
}

/** Next Button **/

.gg-arrow-right-o {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    border: 2px solid;
    transform: scale(var(--ggs,1));
    border-radius: 20px
}
.gg-arrow-right-o::after,
.gg-arrow-right-o::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    right: 4px
}
.gg-arrow-right-o::after {
    width: 6px;
    height: 6px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    bottom: 6px
}
.gg-arrow-right-o::before {
    width: 10px;
    height: 2px;
    bottom: 8px;
    background: currentColor
}

/* OR */
.gg-chevron-right-r {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs,1));
    width: 22px;
    height: 22px;
    border: 2px solid;
    border-radius: 4px
}
.gg-chevron-right-r::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(-45deg);
    left: 5px;
    top: 6px
}

/** Add bnt **/

.gg-add-r {
   box-sizing: border-box;
   position: relative;
   display: block;
   width: 22px;
   height: 22px;
   border: 2px solid;
   transform: scale(var(--ggs,1));
   border-radius: 4px
}
.gg-add-r::after,
.gg-add-r::before {
   content: "";
   display: block;
   box-sizing: border-box;
   position: absolute;
   width: 10px;
   height: 2px;
   background: currentColor;
   border-radius: 5px;
   top: 8px;
   left: 4px
}
.gg-add-r::after {
   width: 2px;
   height: 10px;
   top: 4px;
   left: 8px
}