.container{
    box-sizing: border-box;
    color: #e7e7e7;
    display: flex;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 2px 3px black;
    position: fixed;
    height: 100vh;
    justify-content: center;
    align-items: center;
    border: 7px solid whitesmoke;
}

.code-area{
    width: 50%;
    overflow-x: hidden;
    overflow-y: auto;
    white-space: pre;
    box-shadow:  0 1px 1 px whitesmoke;
    outline: none;
    padding: 0.4rem;
    height: 90vh;
}
.html-view{
    background-color: #e7e7e7;;
    width: 50%;
    overflow-y: auto;
    white-space: pre;
    right: 0;
    box-shadow:  0 1px 1 px whitesmoke;
    padding: 0.4rem;
    height: 95vh;
}
.hidden{
    display: none;
}

@font-face {
    font-family: graffiti;
    src: url('../fonts/BungeeSpice-Regular.ttf')
}

.navbar {
    height: 5vw;
    width: 100vw;
    background-color: #202124;
    display: flex;
    align-items: center;
    font-size: 2vw;
    border-bottom: whitesmoke solid 4px;
}

.navbar a {
    color: #e7e7e7;
}


.navbar .brand {
    display: block;
    padding: 1.2vw;
    font-size: 2.5vw;
}

.navbar ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.navbar ul li a {
    color: #e7e7e7;
    padding: 1.2vw;
    display: block;
}

.navbar ul a:hover,
.navbar ul a:focus,
.navbar ul .active {
    background-color: #272727;
}

body {
    margin: 0;
    background-color: #202124;
}
a {
    text-decoration: none;
}
