:root {
	--text-white: rgba(255,255,255,255);
	--text-red: rgba(194, 29, 59,255);
	--navbar-background-blue: rgba(41,58,95,0.8);
	--navbar-background-purple: rgba(16,24,40,0.8);
	--body-background-blue: rgba(24,33,56,255);
	--body-background-black: rgba(15,20,34,255);
	--navbar-button-active: rgba(129,53,68,255);
	--background-redder: rgba(13,19,41,0.8);
	--background-red: rgb(75, 20, 58);
}

.navbar{
	background-image: linear-gradient(var(--navbar-background-blue), var(--navbar-background-purple));
	backdrop-filter: blur(6px);
	margin: 1.5em;
	border-radius: 0.5em;
}

.navbar .navbar-toggler i{
	color: var(--text-white);
}

.navbar .navbar-toggler:hover{
	background-color: var(--text-red);
}

.navbar .navbar-toggler:focus{
	outline: none;
    box-shadow: none;
}

.navbar li{
	margin-left: 10px;
}

.navbar li > a {
	color: var(--text-white);
	font-weight: 600;
	font-size: 1.2em;
}

.navbar li > a:hover {
	color: var(--text-red);
}

.navbar .d-flex > a:hover {
	background-color: var(--text-red);
}

.navLogo{
	height: 3em; 
	margin-top: -0.1em; 
	margin-bottom: -0.1em;
}

.navbarShop a{
	color: var(--text-white);
	font-weight: 600;
	font-size: 1.2em;
}

.navbarShop a:hover{
	color: var(--text-white);
}



.dropdown-content{
	display: none;
	background-image: linear-gradient(var(--navbar-background-blue), var(--navbar-background-purple));
	position: absolute;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}
.dropdown-content a{
	color: var(--text-white);
	text-decoration: none;
	display: block;
	padding: 12px 16px;
	font-weight: 600;
	font-size: 1.2em;
}
.dropdown-content a:hover{
	background-image: linear-gradient(var(--background-red), var(--background-redder));
}
#dropdown:hover .dropdown-content{
	display: block;
}



.textbox-container{
	margin-top: auto; 
	margin-bottom: auto;
	background-image: linear-gradient(var(--background-red), var(--background-redder));
	border-radius: 0.5em;
	mask: var(--mask);
}

.imagebox-container{
	background-image: linear-gradient(var(--background-red), var(--background-redder));
	border-radius: 0.5em;
	mask: var(--mask);
}

.image-fadedown{
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1.0) 60%, transparent 100%);
}

.image-faderight{
	mask-image: linear-gradient(to right, rgba(0, 0, 0, 1.0) 70%, transparent 100%);
}
.image-fadebottom{
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1.0) 70%, transparent 100%);
}
.image-fadeleft{
	mask-image: linear-gradient(to left, rgba(0, 0, 0, 1.0) 70%, transparent 100%);
}


body{
    background-image: linear-gradient(var(--body-background-black), var(--body-background-black));
	width: 100vw;
	height: 100vh;
	overflow-x: hidden;
	margin-bottom: 50px;
	max-width: 100%;
}
img{max-width: 100%;}

.emblems{
	background-image: url('../resource/dizzyemblem.png');
    background-repeat: space;
    background-attachment: fixed;
	opacity: 0.25;
	position: fixed;
	background-size: 12em 10em;
	z-index: -1;
	width: 100vw;
	height: 100vw;
	top: 0;
  	left: 0;
}

.video{
	max-width: 100%;
	width: 60vw;
	height: 70vh;
	margin: auto;
	display: block;
	margin-top: 5%;

}

.twitter-tweet{ 
	margin: auto;
}

.home{
	background-color: black;
	background-image: none;
}
.dizgate:hover{
	-webkit-transition: 2s;
	-moz-transition: 2s;
	-ms-transition: 2s;
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-ms-transform: scale(1.5);
	z-index: 3;
	position: relative;
}
@media screen and (max-width: 800px) {
	.dizgate:hover{
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
	}
	
}
.dizgate{
	max-width: auto;
	max-height: 500px;
	padding-top: 0%;
	box-shadow: 0 0 5px 5px red;
	-webkit-animation-name: border-pulsate;
	-moz-animation-name: border-pulsate;
	-ms-animation-name: border-pulsate;
	-webkit-animation: border-pulsate 5s infinite;
	-moz-animation: border-pulsate 5s infinite;
	-ms-animation: border-pulsate 5s infinite;
}
@-webkit-keyframes border-pulsate {
    0%   {box-shadow: 0 0 0px 0px red;}50%  {box-shadow: 0 0 20px 20px red;}100% {box-shadow: 0 0 0px 0px red; }
}
@-moz-keyframes border-pulsate {
    0%   {box-shadow: 0 0 0px 0px red;}50%  {box-shadow: 0 0 20px 20px red;}100% {box-shadow: 0 0 0px 0px red; }
}
@-ms-keyframes border-pulsate {
    0%   {box-shadow: 0 0 0px 0px red;}50%  {box-shadow: 0 0 20px 20px red;}100% {box-shadow: 0 0 0px 0px red; }
}

@media screen and (max-width: 800px) {
  .omni {
    display: none;
  }
}
.omni{
	overflow-x: hidden;
	max-height: 500px;
	-webkit-animation-name: dizzy-pulsate;
	-moz-animation-name: dizzy-pulsate;
	-ms-animation-name: dizzy-pulsate;
	-webkit-animation: dizzy-pulsate 15s infinite;
	-moz-animation: dizzy-pulsate 15s infinite;
	-ms-animation: dizzy-pulsate 15s infinite;
}
@-webkit-keyframes dizzy-pulsate {
    0%   {opacity: 0%}50%  {opacity: 100%}100% {opacity: 0%}
}
@-moz-keyframes dizzy-pulsate {
    0%   {opacity: 0%}50%  {opacity: 100%}100% {opacity: 0%}
}
@-ms-keyframes dizzy-pulsate {
    0%   {opacity: 0%}50%  {opacity: 100%}100% {opacity: 0%}
}


.paper{
	display: flex;
	flex-direction: column;
	background-image: url('../resource/home/scroll.png');
	background-position: center 0; 
	background-repeat: no-repeat;
	background-size: max(60vw, 700px);
}
@media screen and (max-width: 800px) {
	.paper{
		background-size: max(60vw, 800px);
}
	.bio{
		padding-top: 35% !important;
	}

}
.bio{
	padding-top: 15%;
}
#headline{
	white-space: pre-line;
	color: red;
	text-align: center;
	font-weight: bold;
	font-family: serif, georgia;
	font-size: max(2vw, 20px);
	line-height: .07;
}
#biotext{
	white-space: pre-line;
	color: black;
	text-align: center;
	font-weight: 600;
	font-size: max(1vw, 11px);
	
}



.title {
	text-align: center;
	color: var(--text-red);
	font-family: serif, georgia;
	text-decoration: bold;
	font-size: max(5vw, 50px); 
}
.title0{
	text-align: center;
	color: var(--text-red);
	font-family: serif, georgia;
	text-decoration: bold;
	font-size: max(4vw, 50px);
	
}

.subtitle {
	text-align: center;
	color: var(--text-red);
	font-family: serif, georgia;
	font-size: max(2.5vw, 25px); 
	font-weight: 600;
}


#supp{
	margin: 0;
	padding: 0;
	float: left;
}
#supp a img{
	margin-top: 20px;
	margin-left: 20px;
	max-height: 40px;
	max-width: 40px;

}
#supp img:hover{
	transition: .5s;
	transform: scale(1.1);
	z-index: 1;
}
#lbt{
	white-space: pre;
	color: #ffccff;
	text-align: center;
	font-size: 140%;
	padding-top: 10%;
	
}
#lbt a{
	color: #ff0099;
	text-decoration: none;
	font-weight: bold;
}
#lbt a:hover{
	text-decoration: underline;
}
#prof{
	white-space: pre-line;
	color: white;
	text-align: center;
	font-size: max(2vw, 15px);
}
@media screen and (max-width: 800px) {
	
	#sprd img{
		display: none;
	}
	#sprd0 img{
		display: none;
	}
	.bug img{
		display: none;
	}
	#sprd div{
	text-align: center;
	padding-right: 10%;
	}
	#sprd0 div{
	text-align: center;
	padding-left: 10%;
	}	
	#sprd b{
	text-align: center;
	}
	#sprd0 b{
	text-align: center;
	}
	
}
#sprd{
	white-space: pre-line;
	flex-wrap: wrap;
	color: white;
	text-align: left;
	font-size: max(1vw, 15px);

}
#sprd0{
	white-space: pre-line;
	flex-wrap: wrap;
	color: white;
	text-align: right;
	font-size: max(1vw, 15px);
}
.bug{
	white-space: pre-line;
	text-align: center;
	font-size: max(1vw, 18px);
}
.bug-box{
	margin-top: auto; 
	margin-bottom: auto;
	background: linear-gradient(var(--background-red), var(--background-redder));
	border-radius: 0.5em;
	mask: var(--mask);
}


#dahair a{
	width: 100%;
}

#dahair img{	
	width: 100%;
	margin: 0.5em;
}
#dahair img:hover{
	transition: .5s;
	transform: scale(1.1);
	z-index: 1;
}
.row{
	display: flex; 
	flex-wrap: wrap;
	padding: 0 4px;
	justify-content: center;
}
.column{
	display: block;
	flex: 25%;
	max-width: 25%;
	padding: 0 4px;
}
.column img {
	margin-top: 8px;
	vertical-align: middle;
	width: 100%;
}
@media screen and (max-width: 800px) {
  .column {
    flex: 25%;
    max-width: 25%;
  }
}
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}

.credits {
	white-space: pre-line;
	flex-wrap: wrap;
	color: var(--text-red);
	text-align: center;
	font-size: max(1vw, 15px);
	padding-top: 50px;
	padding-bottom: 50px;	
}
.credits a{
		color: white;
}
.credits0 {
	white-space: pre-line;
	flex-wrap: wrap;
	color: white;
	text-align: center;
	font-size: max(1vw, 20px);
	
}
.credits1 {
	white-space: pre-line;
	flex-wrap: wrap;
	color: var(--text-red);
	text-align: center;
	font-size: max(2vw, 25px);
}
#lbatw{
	max-width: 100%; 
	padding-top: 10%;
	margin-top: 30px;
}



