html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: var(--p-bg-color) !important;
    background-image: var(--bg-img) !important;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}

#Coming_Soon {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    background-color: RGB(0,0,0);
    background-image: linear-gradient(to bottom, RGB(255,100,20), RGBA(255,100,20,0.7), RGBA(255,100,20,0.5), RGBA(255,100,20,0.3), RGBA(255,100,20,0.1), RGB(0,0,0), RGB(0,0,0));
}

#Outer_Container {
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#Image_Container, #Container {
    margin: 0 auto 0 auto;
}

#Image {
    width: 325px;
    height: auto;
}

#Text {   
    font-family: 'Source Sans Pro', sans-serif;
	color: RGB(255,255,255);
	font-size: 5em;
    text-align: center;
    padding: 0;
    margin: 0;
}

::selection {
	background-color: RGBA(255,100,20,0.5);
	color: RGB(255,255,255);
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-thumb {
	background-color: RGB(200,0,0);
	border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
	background-color: RGB(255,100,20);
}

::-webkit-scrollbar-track {
	background-color: RGBA(200,0,0,0.3);
	border-radius: 10px;
}