@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --primary: #FF8000;
  --primary-rgb: 255, 128, 0;
  --bg-darker: #252525;
  --bg-dark: #323232;
  --text-light: #EEE;
  --text-muted: #AAA;
  --border: rgba(255, 255, 255, 0.03);
}
body {
	background: var(--bg-darker);
	background-size: cover;
    margin: 0;
	font-size: 14px;
	font-family: "Noto Sans";
	color: #AAA;
}
a {
	cursor: pointer;
	text-decoration: none;
	transition: .3s;
	color: #DDD;
}
a:hover{
	color: #FFF;
}
.menu {
	border-bottom: 1px solid var(--border);
	background-color: var(--bg-dark);
	text-align: center;
	color: #DDD;
	padding: 10px;
	position: fixed;
	display: flex;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1;
}
.menu a {
	color: #BBB;
}

.menu a:hover {
    color: #FFF;
}
.leftmenu{
	width: -webkit-fill-available;
    width: -moz-available;
	text-align: left;
	display: flex;
}
.leftmenu a{
	margin-right: 10px;
}
.rightmenu{
	width: 20%;
	text-align: right;
}
.rightmenu a{
	margin-left: 10px;
}
.block{
	border: 1px solid var(--border);
	background-color: var(--bg-dark);
	border-radius: 14px;
	margin: 10px;
	padding: 15px;
	transition: .3s;
}
.centerblock{
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px;
    transition: 0.3s;
    width: 500px;
    height: 100vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    text-align: center;
    @media (max-width: 768px) {
        width: 100%;
        height: 100vh;
        max-height: none;
        top: 0;
        left: 0;
        transform: none;
        border: none;
    }
}
.textblock{
	margin: 2% 5% 2% 5%;
	text-align: justify;
	font-family: monospace;
}
.downbar{
	border-top: 1px solid rgba(255, 255, 255, 0.03);
	background-color: #323232;
	text-align: center;
	color: #DDD;
	padding: 3px;
	position: fixed;
	display: flex;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 2;
}
::-webkit-scrollbar {
    display: none;
}
.message {
	border: 1px solid rgb(255, 255, 255, 0.2);
	background-color: rgba(255, 255, 255, 0.6);
    color: rgba(0, 0, 0, 0.8);

	border-radius: 10px;
    padding: 10px;
    right: 5px;
    bottom: 5px;
    left: 5px;
    backdrop-filter: blur(10px);

	text-align: center;
	font-weight: bold;
    position: fixed;
    z-index: 999;

    transition: .3s;
    transform: translateY(100px);
    display: none;
}
.error{
	border: 1px solid rgb(255, 255, 255, 0.2);
	background-color: rgba(255, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.8);
}
.warning{
	border: 1px solid rgb(255, 255, 255, 0.2);
	background-color: rgba(255, 255, 0, 0.6);
    color: rgba(0, 0, 0, 0.8);
}
.success{
	border: 1px solid rgb(255, 255, 255, 0.2);
	background-color: rgba(0, 255, 0, 0.6);
    color: rgba(0, 0, 0, 0.8);
}