@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap');
html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
.form {
    width: 55%;
    margin: auto;
    padding-top: 6%;
}
.form #input {
    text-align: center;
}
#navbar {
	transition: 0.6s;
}
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	position: fixed;
	width: 100%;
	z-index: 5;
}
ul.active{
	background-color: black;
}
.overlay {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0, 0.9);
	overflow-x: hidden;
	transition: 0.5s;
} 
.overlay-content {
	position: relative;
	top: 25%;
	width: 100%;
	text-align: center;
	margin-top: 30px;
} 
.overlay a {
	padding: 8px;
	text-decoration: none;
	font-size: 36px;
	color: #818181;
	display: block;
	transition: 0.3s;
}
.overlay a:hover, .overlay a:focus {
	color: #f1f1f1;
}
.overlay .closebtn {
	position: absolute;
	top: 20px;
	right: 45px;
	font-size: 60px;
}
#navbar span {
	display: block;
	color: black;
	text-align: center;
	padding: 8px 14px;
	text-decoration: none;
	font-size: 40px;
	cursor: pointer;
}
.form #output {
    margin-top: 10%;
    background-color: #f2f2f2ff;
    box-sizing: border-boX;
    padding: 13px 13px 13px 13px;
}
.top-layer {
    margin: 30px 15px 4px;
}
.bottom-layer {
    background-color: #081b4b;
    color: white;
    padding: 14px;
    border-radius: 16px;
    word-break: break-all;
    font-family: 'JetBrains Mono', monospace;
    overflow: scroll;
    overflow-y: auto;
    overflow-x: auto;
}
mark.red {
    color: #f73f3f;
    background: none;
}
mark.blue {
    color: rgb(58, 139, 255);
    background: none;
}
.noselect {
    background: none;
    color: white;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
h2 {
    padding: 0;
    margin: 0;
}
.code-label {
    border-radius: 14px 14px 0 0;
    background-color: rgb(229, 232, 237);
    color: rgb(50, 50, 50);
    display: block;
    font-size: 14px;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    padding-right: 1em;
    position: relative;
    text-align: center;
    z-index: 2;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
input, select {
    font-size: 16px;
}
@media only screen and (max-width: 720px) {
    form {
        text-align: center;
    }
    .form {
        width: 90%;
    }

}
