/* Header */

#header-bar {
	height: 40px;
	font-size: 20px;
	text-align: center;
	position: relative;
	background: white;
	display: flex;
	justify-content: center;
	flex-direction: row;
	z-index: 9;
}

.header-title {
	font-size: 40px;
	color: black;
	display: inline-block;
	z-index: 10;
}

.header-link {
	width: 100px;
	height: 40px;
	font-size: 20px;
	font-family: inherit;
	outline: none;
	background: white;
	position: relative;
	overflow: hidden;
	display: inline-block;
	z-index: 10;
}

/* Body */

body {
	font-family: Verdana;
	background: black;
}

.p-text {
	color: white;
	display: inline-block;
}

.columns {
	display: flex;
	flex-direction: row;
}

.column-l {
	font-size: 15px;
	font-family: inherit;
	color: white;
	width: 60vw;
	margin: 0.5vw auto;
	padding: 5px;
	border: 1px solid white;
}

.column-r {
	font-size: 15px;
	font-family: inherit;
	color: white;
	width: 15vw;
	margin: 0.5vw auto;
	padding: 5px;
	border: 1px solid white;
}

.socials {
	padding: none;
}
/* Footer */

.button-credit {
	font-size:13.5px;
	font-family: inherit;
	cursor: pointer;
	border-radius: 10px;
	border: none;
	outline: none;
	background: white;
	position: relative;
	overflow: hidden;
	transition: all 0.5s;
	z-index: 1;
	opacity : 0;
	animation: fadeIn 1s ease-in forwards;
}

.button-credit::before {
	width: 100%;
	height: 0;
	content: '';
	bottom:0;
	left: 0;
	background: #ffff66;
	position: absolute;
	display: block;
	transition: all 0.5s;
	z-index: -1;
}

.button-credit:hover::before {
	height: 100%;
}

/* Fun Stuff */

.admin-button {
	font-size:13.5px;
	font-family: inherit;
	cursor: pointer;
	border: none;
	border-radius: 50%;
	margin: 5px;
	color: black;
	outline: none;
	background: white;
	position: absolute;
	top: 1%;
	right: 1%;
	overflow: hidden;
	transition: all 0.5s;
	z-index: 1;
	opacity : 0;
	animation: fadeIn 1s ease-in forwards;
	display: block;
}

.admin-icon {
	width: 25px;
	height: 25px;
	margin: 1px;
	display: inline-block;
	transition: filter 0.3s ease;
	filter: invert(1);
}

.admin-button::before {
	width: 100%;
	height: 100%;
	content: '';
	bottom:0;
	left: 0;
	background: radial-gradient(circle, #575656, white);
	color: white;
	position: absolute;
	display: block;
	transition: all 0.5s;
	opacity: 0;
	z-index: -1;
}

.admin-button:hover::before {
	opacity: 1;
}

.admin-button:hover {
	color: white;
}

.button-reg {
	font-size:13.5px;
	font-family: inherit;
	cursor: pointer;
	border-radius: 10px;
	border: none;
	outline: none;
	background: white;
	position: relative;
	overflow: hidden;
	transition: all 0.5s;
	z-index: 1;
	opacity : 0;
	animation: fadeIn 1s ease-in forwards;
}

.button-reg::before {
	width: 0;
	height: 100%;
	content: '';
	bottom:0;
	left: 0;
	background: linear-gradient(to right, #808080, #ffffff);
	position: absolute;
	display: block;
	transition: all 0.5s;
	z-index: -1;
}

.button-reg:hover::before {
	width: 100%;
}

.hidden-link {
	color: inherit;
	text-decoration: none;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
	padding-bottom: 10px;	
}

.hidden-link-credits {
	color: inherit;
	text-decoration: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

p, ol, ul, h1, h2, h3, h4, h5 {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}