/*       UNIVERSAL       */
a.online {
	text-align: right;
	z-index:1339;
	!important;
	top:55px;
	right:3px;
	font-size: 2.5em;
}

#returnButton {
    text-decoration-line: none;
    background-color: black;
    padding: 5px;
    color: white;
    width: auto;
    border: 1px outset white;
    border-radius: 2px;
}

#returnButton:hover {
    background-color: rgba(0,0,0,.5);
    text-transform: uppercase;
}

.indent {
    text-indent: 50px;
}

/* rainbow/comic sans text stuff */
.rainbow-text .block-line > span {
  display: inline-block;
}
.block-line {
  background-image: linear-gradient(90deg,#ff0000,#ff2b00,#ff5500,#ff8000,#ffaa00,#ffd500,#ffff00,#d4ff00,#aaff00,#80ff00,#55ff00,#2bff00,#00ff00,#00ff2b,#00ff55,#00ff80,#00ffaa,#00ffd5,#00ffff,#00d4ff,#00aaff,#007fff,#0055ff,#002bff,#0000ff,#2a00ff,#5500ff,#7f00ff,#aa00ff,#d400ff,#ff00ff);
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 50px;
  font-family: 'Comic Sans MS', sans-serif, cursive;
  font-weight: bold;
}

/* align to the right */
.right {
	float: right;
}

/* align to center */
.center {
	text-align: center;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* Image Shake */
img:hover.shake{
  animation: shake 1s;
  animation-iteration-count: infinite;
}

/* 		CRINGE 	*/


.friend {
    position: absolute;
    bottom: 8px;
    right: 16px;
    width: auto;
}

.friendtext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: 150%;
    left: 50%;
    margin-left: -60px;
}

.friendtext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}


/* ART  AND  COMMISSIONS */


body.art {
    background: url("/assets/images/light-blue-abstract.jpg") fixed;
}


.headerArt {
    flex: auto;
    background-color: rgba(1,1,1,0.5);
    padding: 20px;
    color: white;
    border-radius: 25px;
    border: solid white 2px;
    margin-right: 10%;
    margin-left: 10%;
	display: block;
	flex-wrap: wrap;
	text-align: center;
}

.commissions {
    flex: auto;
    background-color: rgba(1,1,1,0.5);
    padding: 20px;
    color: white;
    border-radius: 25px;
    border: solid white 2px;
    margin-right: 10%;
    margin-left: 10%;
	display: block;
	flex-wrap: wrap;
	text-align: center;
}

#commissions-content {
    display: none;
}

#commissionButton {
    border-radius: 25px;
    font-size: 25px;
    padding: 5px 25px 5px 25px;
    cursor: pointer;
}

#commissionButton:hover {
    background-color: #B9B9B9;
}

main.art {
    flex: auto;
    background-color: rgba(1,1,1,0.5);
    padding: 20px;
    color: white;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    border: solid white 2px;
    margin-right: 10%;
    margin-left: 10%;
	display: block;
	flex-wrap: wrap;
}
/* commission columns */
.comColumn {
    float: left;
    width: 50%;
    padding: 10px;
  box-sizing: border-box;
}

.comColumn p {
    font-size: 1.5em;
	line-height: 1.5;
}

.comColumn h1 {
    font-size: 2.5em;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 600px) {
  .comColumn {
    width: 100%;
  }
}

/* art columns */
div.gallery {
	display: grid;
    grid-template-columns: auto auto;
}
div.gallery > div {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

div.gallery p {
	line-height: 1.2;
    font-size: 100%;
}

div.gallery h1 {
    border-style: outset;
    color: white;
    font-weight: bold;
    font-family: 'Comic Sans MS', sans-serif, cursive;
	font-size: 200%;
	text-decoration: underline;
}

div.gallery h1:hover {
    background-color: #34A3BC;
	text-decoration: none;
}

div.gallery h1:hover .dropdown-content {
	display: block;
}

.dropdownArt {
	position: relative;
}

.dropdownArt-content {
	display: block;
	position: absolute;
	background-color: white;
	min-width: auto;
	border: solid black 1px;
	text-align: center;
	box-shadow: 0px 8px 16px 0px rgba(1, 1, 1, .2);
}

.dropdownArt-content p {
	color: black;
	padding: 5px 5px;
	display: block;
}

.speedpaintLink {
	color: aqua;
	font-family: 'Comic Sans MS', sans-serif, cursive;
	font-size: 1.25em;
}

img.caseDisplay {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 5px;
    width: 70%;
	height: auto;
}

img.caseDisplay:hover {
	animation: shake 1s infinite linear;
	cursor: pointer;
}

@media only screen and (max-width: 425) {
    img.caseDisplay {
        max-width: 100%;
		height: auto;
    }
}

/* expand images */

.modal { /* background */
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	align-items: center;
	justify-content: center;
	transition: opacity 0.5s ease;
}

.modal-content { /* image */
	position: relative;
	width: auto;
	height: 90%;
	max-width: auto;
	max-height: 90%;
	border-radius: 5px;
	overflow: hidden;
	animation: zoomIn 0.5s;
}
.modal.show {
	display: flex;
	opacity: 1;
}
/* Close button */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #ffffff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s;
}
/* Caption of modal image */
.caption {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .caseDisplay {
     width: calc(50% - 20px);
  }
}

@media screen and (max-width: 480px) {
  .caseDisplay  {
    width: calc(100% - 20px);
  }
}


/*       HOME       */

/* WAIT!! */

#wait {
 position: fixed;
 background-color: white;
 z-index: 100;
 top: 0;
 left: 0;
 width: 100vw;
 height: 100vh;
 font-size: 150%;
 overflow-y: scroll;
 opacity: 1;
 transition: .2s;
 display: block;
}

#wait > * {
 width: 100%;
 max-width: 700px!important;
 margin: auto;
 display: block;
}

#wait:target {
 opacity: 0;
 visibility: hidden;
}

#wait > ul {
 padding: 10px 50px;
 border: 5px double cyan;
 border-radius: 20px;
 background-color: white;
}

/* Firefox */
* {
	scrollbar-width: auto;
	scrollbar-color: #41cd00 #000000;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
	width: 10px;
}

*::-webkit-scrollbar-track {
	background: #000000;
}

*::-webkit-scrollbar-thumb {
	background-color: #41cd00;
	border-radius: 10px;
	border: 3px solid #ffffff;
}



p{
  font-size: 120%;
}

div.banner{
	top: 0;
	background-color: rgba(0, 0, 0, .5);
	width: 100%;
	height: 300px;
	color: white;
}
div.banner img {
	width: 100%;
	height: 100%;
	object-fit: fill;
}

div.headerHome {
	position: sticky;
	align-items: center;
	display: flex;
	flex-direction: row;
	top: 0;
	padding-left: 2%;
	padding-top: 1%;
	padding-bottom: 1%;
	background-color: black;
	color: white;
	border-radius: 25px;
	border: solid gray 2px;
	z-index: 2;
}

/* profile picture */
.pfpcontainer {
	width: 125px;
	height: 125px;
}
.pfpcontainer img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
  	animation: spin 7s infinite linear;
}

div.headerHome h1 {
	display: inline-block;
	margin-top: auto;
	margin-bottom: auto;
	font-size: 2.5em;
	font-family: 'Comic Sans MS', sans-serif, cursive;
	font-weight: bold;
}

div.headerHome p {
	margin-top: auto;
	margin-bottom: auto;
}

.statis {
	display: inline-block;
	margin-top: auto;
	margin-bottom: auto;
	margin-left: 10px;
	font-size: 125%;
	font-family: 'Comic Sans MS', sans-serif, cursive;
	position: relative;
	max-width: 25%;
}

.statistext {
	width: auto;
	background-color: white;
	color: black;
	text-align: left;
	border-radius: 10px;
	display: flex;
	padding: 10px 10px;
}

.statistext::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 100%;
	margin-top: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent white transparent transparent;
}

div.right-align {
	margin-left: auto;
}

.dropbtn {
	background-color: blue;
	border: outset;
	color: white;
	width: 100px;
	padding: 5px;
	font-size: 125%;
	cursor: pointer;
}

.dropdown {
	position: relative;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: LightSteelBlue;
	min-width: auto;
	border: solid black 1px;
	box-shadow: 0px 8px 16px 0px rgba(1, 1, 1, .2);
}

.dropdown-content button {
	color: black;
	padding: 5px 5px;
	display: block;
}

.dropdown-content button:hover {
	background-color: LightSlateGrey;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.dropdown:hover .dropbtn {
	background-color: black;
	border: inset;
}

@media (max-width: 600px) {
	.headerHome {
		display: inline-grid;
	}
}

main.home {
    flex: auto;
    background-color: black;
    padding: 20px;
    color: white;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    margin-right: 5%;
    margin-left: 5%;
	display: block;
	flex-wrap: wrap;
}

/* Navigation panel */
ul.topnav{
    display: flex;
	justify-content: center;
	align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #232326;
    border-radius: 25px;
    font-family: 'Comic Sans MS', sans-serif, cursive;
}

ul.topnav li a {
    display: block;
    color: #f1f1f1;
    padding: 14px 16px;
    text-decoration: none;
	font-size: 1.5vw;
	text-align: center;
}

ul.topnav li a:hover{
    background-color: #45444d;
    color: black;
    border-radius: 25px;
}

.attention {
	animation: attention .5s infinite linear;
}

/*Footer*/
footer{
    padding: 20px;
    text-align: center;
    background: #7a7a7a;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
	margin: auto;
 }
/* background */
body.home {
	background: url("/assets/images/rainbow-checkered.png");
    cursor: url("data:application/octet-stream;base64,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"), auto;
}

/* vinyl */
.vinyl {
	position: relative;
	width: 200px;
}

.disc {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	right: 50%;
	transition: .5s ease;
	animation: vinylSpin 5s infinite linear;
}

.album {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 100px;
	height: auto;
	width: 100%;
}

.vinyl:hover .tooltiptext { /*show tooltip (album name)*/
	visibility: visible;
}

.vinyl:hover .disc { /* ease disc display out of the album cover */
	right: 100%;
}

.tooltiptext {
	visibility: hidden;
	width: auto;
	background-color: white;
	color: black;
	text-align: center;
	padding: 5px 5px;
	border-radius: 6px;
	position: absolute;
	z-index: 1;
	bottom: 110%;
	left: 25%;
	margin-left: -65px;
}

.tooltiptext::after {
	content: "  ";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: white transparent transparent transparent;
}


/*		 Animations		 */

@keyframes zoomIn {
  from {transform: scale(0.6);}
  to {transform: scale(1);}
}

@keyframes attention {
	0% { color: chartreuse; }
	50% { color: white; }
	100% { color: chartreuse; }
}

@keyframes spin{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(-360deg); }
}

@keyframes vinylSpin {
	from{ transform:rotate(0deg); }
	to{ transform:rotate(360deg); }
}

@keyframes display {
	from{ right: 50%;}
	to{ right: 100%;}
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

