@font-face {
    font-family: 'Fira Code';
    src: url('fonts/FiraCode-Regular.otf') format('opentype');
}

html, body {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    background-color: #f7f7f7;
    margin: 0px;
    padding: 0px;
}

a {
    color: black;
}

a:visited {
    color: black;
}

.editor {
    position: fixed;
    top: 60px;
    right: 0px;
    bottom: 0px;
    overflow: auto;
    background-color: white;
}

.leftsidebar {
    position: fixed;
    width: 300px;
    left: 0px;
    top: 60px;
    bottom: 0px;
    padding: 5px;
    overflow: auto;
}

.doc {
    height: 100%;
}

.description {
    max-width: 700px;
    margin: auto;
    padding: 10px;
    background-color: white;
    font-size: 16px;
}

.blurb {
    border: 1px solid;
    border-radius: 3px;
    padding: 5px;
}

.btn {
	margin-left: 10px;
    margin-right: 10px;
}

.static-toolbar {
    height: 40px;
    text-align: right;
    padding: 10px;
}

.toolbar {
    height: 40px;
    padding: 10px;
}

.logo {
    float: left;
    width: 40px;
    height: 40px;
}

.fixed-logo {
    position: fixed;
    left: 10px;
    top: 10px;
}

.logo-text {
    float: left;
    padding-left: 5px;
    -webkit-font-feature-settings: "liga" on, "calt" on;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: 'Fira Code';
}

.title {
    font-size: 25px;
}

.subtitle {
    font-size: 10px;
}

.sidetext {
    padding: 30px;
    color: gray;
    font-style: italic;
    text-align: center;
}

.footer {
	text-align: center;
    margin: 20px;
}

.marketing {
    margin: 20px;
    text-align: center;
}

.project-list {
    margin: 20px;
    padding: 10px;
    list-style-type: none;
}

.project-list-header {
    margin: 20px;
    text-decoration: none;
}

.project-list-item {
    font-size: 25px;
    text-decoration: none;
    line-height: 40px;
}

.project-list-item:hover {
    background-color: lightgray;
}

@media (min-width: 800px) {
    .doc {
    	width: 800px;
        margin: auto;
    }
  
    .editor {
        left: 300px;
    }
  
    .leftsidebar {
        width: 300px;
    }
  
    .progress {
        top: 50%;
        left: 110px;
    }
  
    .toolbar {
        position: fixed;
        text-align: left;
        left: 300px;
    }
  
    .bullets {
        float: left;
        width: 210px;
        text-align: right;
    }
  
    .screenshot {
        width: 500px;
    }
}

@media (max-width: 799px) {
    .doc {
    	max-width: 100%;
        margin: auto;
    }
  
    .editor {
        left: 0px;
        bottom: 41%;
    }
  
    .leftsidebar {
        width: 100%;
        top: 60%;
    }
  
    .progress {
        bottom: 10%;
        left: 50%;
        margin-top: -40px;
        margin-left: -40px;
    }
  
    .toolbar {
        text-align: right;
    }
  
    .screenshot {
        width: 100%;
    }
}

.paren-soup, .CodeMirror {
    -webkit-font-feature-settings: "liga" on, "calt" on;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: 'Fira Code';
    font-size: 16px;
    height: 100%;
    margin: 0;
}

.paren-soup {
    overflow: auto;
}

.paren-soup .content {
    min-height: 100%;
}