body {
	padding: 0;
	background: #f9eef5;
	background-attachment: fixed;
	color: #b43b6b;
}

::selection {
    color: #5c3363;
    background: #db95bd;
}

h1 {
	font-size: 50px;
	color: white;
	font-weight: bold;
	font-variant: small-caps;
}

h2 {
	font-size: 30px;
	font-variant: small-caps;
	color: #b43b6b;
	border: solid #2d2b5a;
	border-width: 1px 10px 1px 10px;
	background-color: #ebc6df;
	margin-bottom: 2px;
    text-align: center;
}
h3 {
	font-size: 30px;
	font-variant: small-caps;
	background-color: #2d2b5a;
	color: white;
	text-align: center;
	margin: 0;
}
h4 {
	font-size: 20px;
	font-weight: bold;
	font-variant: small-caps;
	margin: 5px 0px;
	border-left: 5px solid #b43b6b;
    border-top: 1px solid #b43b6b;
    border-bottom: 1px solid #b43b6b;
    border-right: 1px solid #b43b6b;
    background-color: #ebc6df;
	text-indent: 2px;
}
h5 {
	font-size: 15px;
	border-bottom: 1px solid #2d2b5a;
	margin: 0px;
}
h6 {
	font-size: 25px;
	font-weight: bold;
	font-variant: small-caps;
	margin: 2px 0px;
    text-align: center;
    background-color: #b43b6b;
    border: solid 1px #2d2b5a;
    color: white;
}

	/* Links */
a {
    color: #b43b6b;
    font-weight: bold;
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-thickness: 1px;
    transition: all .4s ease-in-out; 
}
a:hover {
    color: #2d2b5a;
}

	/* Pixel Buttons */
button.pi {
    background-color: #ebc6df;
    border: solid 1px #2d2b5a;
    margin-bottom: 2px;
    color: white;
    background-size: auto;
    background-repeat: no-repeat;
    width: 100%;
    height: 35px;
    font-size: 14px;
    font-weight: bolder;
    transition: all .4s ease-in-out;
    text-shadow: #b43b6b 0px 0px 2.5px, #b43b6b 0px 0px 2.5px, #b43b6b 0px 0px 2.5px, #b43b6b 0px 0px 2.5px, #b43b6b 0px 0px 2.5px,#b43b6b 0px 0px 2.5px;
        -webkit-font-smoothing: antialiased;
}
button.pi:hover {
    background-color: #b43b6b;
    color: white;
    text-shadow: #2d2b5a 0px 0px 2.5px, #2d2b5a 0px 0px 2.5px, #2d2b5a 0px 0px 2.5px, #2d2b5a 0px 0px 2.5px, #2d2b5a 0px 0px 2.5px,#2d2b5a 0px 0px 2.5px;
    -webkit-font-smoothing: antialiased;
}

    /* Scroll Bar */
    /* width */
    ::-webkit-scrollbar {
        width: 5px;
    }
        /* Track */
    ::-webkit-scrollbar-track {
        background: #f9eef5;
    }
        /* Handle */
    ::-webkit-scrollbar-thumb {
        background: #db95bd;
    }
        /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #b43b6b;
    }