*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: #e7e7e7;
    border: 1px solid #cacaca;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

*::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #363636;
}

/* Account widget top of screen */
.account {
    user-select: none;
    z-index: 1000;
    position: fixed;
    right: 0;
    top: 0;
    width: fit-content;
    background: linear-gradient(135deg, #7b7b7b, #505050);
    border: 2px solid #333;
    border-radius: 0 0 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    font-family: 'Arial', sans-serif;
}

.account img {
    width: 30px;
    height: 30px;
}

.account p {
    padding: 7px;
    color: #f1f1f1;
    background-color: #333;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.account a {
    color: #fff;
    background-color: #a83232;
    padding: 6px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    border-top: 1px solid #333;
    transition: background-color 0.3s ease;
    font-size: 10px;
}

.account a:hover {
    background-color: #c44d4d;
}



/* MORPH */
/* Explanation in JS tab */

/* Cool font from Google Fonts! */
@import url('https://fonts.googleapis.com/css?family=Raleway:900&display=swap');

body {
	margin: 0px;
}

#container {
	/* Center the text in the viewport. */
	position: absolute;
	margin: auto;
	width: 100vw;
	height: 80pt;
	top: 0;
	bottom: 0;
	
	/* This filter is a lot of the magic, try commenting it out to see how the morphing works! */
	filter: url(#threshold) blur(0.6px);
}

/* Your average text styling */
#text1, #text2 {
	position: absolute;
	width: 100%;
	display: inline-block;
	
	font-family: 'Raleway', sans-serif;
	font-size: 80pt;
	
	text-align: center;
	color: white;
	user-select: none;
}



/* Info screens */
.info-screen{
    display: none;
    padding: 10px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    height: fit-content;
    z-index: 1000;
    background-color: #1b1b1b;
}
.info-screen * 
{
    font-family: "Bebas Neue",sans-serif;
    user-select: none;
}
.info-screen h2
{
    font-size: 35px;
    width: fit-content;
    margin: auto;
    padding: 5px;
    color: #bab1a8;
}
.info-screen p
{
    width: fit-content;
    margin: auto;
    padding: 50px;
    font-size: 23px;
    color: #bab1a8;
}
.donate{
    width: 70%;
    padding: 20px;
    height: fit-content;
    flex-direction: column;
    display: flex;
    margin: auto;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.125);
    margin-bottom: 30px;
}
.donate  h3{
    color: white;
    padding: 5px;
}
.donate a {
    color:  white;
    background-color: green;
    width: fit-content;
    padding: 30px;
    font-size: 30px;
}
.donate p{
    padding: 10px;
    font-size: 20px;
}
.donate p span{
    color: rgba(255, 0, 0, 0.63);
    font-size: 15px;
}



a:hover {
    cursor: pointer;
}
a{
    color:#a83232;
}