*{
    font-family: monospace;
}
html{
	height: 100%;
}
body{
	width: 100%;
	height: 100%;
	background:rgb(78, 79, 80);
}
.edits{
	width: 95%;
	height: 50%;

	display: inline-flex;
	justify-content: space-between;

	margin-left: 2.5%;
	margin-right: 2.5%;

    font-size: 16px;

    height: 90%;
}
.edits .html-edit{
	height: 98%;
	background: rgb(55, 56, 57);
    width: 100%;
    width: 50%;
}
.edits .compile-result{
    height: 98%;
    background: rgb(55, 56, 57);
    width: calc(50% - 10px);
    color: white;
}
.edits .html-edit .tag{
	display: inline-block;
	height: 30px;
	line-height: 30px;
	border-bottom: solid 1px rgb(85, 86, 87);
	color: white;
	width: 95%;
	padding-left: 5%;
}
.edits .compile-result .tag{
    display: inline-block;
    height: 30px;
    line-height: 30px;
    border-bottom: solid 1px rgb(85, 86, 87);
    color: white;
    width: 95%;
    padding-left: 5%;
}
.edits .compile-result .content{
    background: #272822;
    padding: 10px;
    width: calc(100% - 20px);
    display: inline-block;
    overflow: auto;
    height: calc(100% - 51px);
}
.edits .html-edit .edit{
	width: 94%;
    height: none;
    border: none;
    background: transparent;
    padding: 3%;
    height: 70%;
    overflow: auto;
    height: calc(94% - 40px);
    color: white;
    line-height: 1.5em;
}

.edits .run{
	background: rgb(78, 79, 80);
}
.result{
	width: 100%;
	height: 50%;
	background: rgb(55, 56, 57);

    display: flex;
    align-items: center;
    justify-content: center;
    height: 10%;
}
.result .run,
.result .close{
    background: rgb(78, 79, 80);
    color: white;
    font-size: 13px;
    padding: 5px 10px;
    margin-left: 1%;
    border-radius: 5px;
    letter-spacing: 4px;
    margin-top: 1%;
    display: inline-block;

    margin-top: 0;
    cursor: pointer;
}
.result .run-result{
    height: calc(92% - 45px);
    border: solid 1px rgb(78, 79, 80);
    border-radius: 5px;
    margin-left: 1%;
    margin-right: 1%;
    margin-top: 1%;

    display: none;
}





