body {
    background-color : rgba(0, 0, 0, 0);
    color : #aaaaaa;
    overflow-y : auto;
    font-family : Helvetica;
}
input {
    border-radius : 5px;
    background-color : #555560;
    width : 100px;
}
.container {
    position : relative;
    top : 50px;
    background-color : #444450;
    min-height : 50px;
    box-shadow : 0 0 2.5px rgba(0, 0, 0, 1);
    border-radius : 5px;
    padding : 10px;
    width : calc(100% - 100px);
    margin : 10px 50px 10px 50px;
}
.course-name {
    display : inline-block;
}
.small-input {
    width : 50px;
    transition : width 0.25s;
    position : absolute;
    right : 50px;
    top : 50%;
    transform : translate(0, -75%);
}
.small-input:focus {
    width : 75px;
}
.inline-heading {
    display : inline-block;
}
h1, h2, h3, h4 {
    width : 50%;
    font-weight : normal;
}
h1 {
    font-family : Helvetica;
    position : relative;
    top : 50px;
    left : 50px;
}
h3 {
    font-size : 20px;
    margin : 5px;
    padding : 5px;
}
.add-icon {
    color : #888888;
    font-size : 25px;
    font-family : Helvetica;
    font-weight : bold;
}
.course {
    position : relative;
}
.top-input {
    position : absolute;
    top : 12.5px;
    right : 12.5px;
}
#upload-button {
    position: fixed;
    font-family : Helvetica;
    top: 30px;
    right: 30px;
    font-size: 25px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 1);
    background-color: #444450;
    padding: 10px;
    transition: background-color 0.25s, color 0.25s;
}
.exit {
    position: absolute;
    right: 5px;
    width: 20px;
    height: 20px;
    background-color: #333340;
    top: 7.5px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    transition: background-color 0.25s, color 0.25s;
}
#keyword {
    position : relative;
    left : 50px;
    top : 50px;
}
.keyword-div {
    display : inline-block;
    padding : 5px;
}
.keyword-span {
    padding : 5px;
}
.keyword-x {
    padding : 5px;
}
.editable-div {
    height : 50px;
    width : calc(100% - 40px);
    margin : 10px;
    display : block;
    background-color : #555560;
    padding : 10px;
    border-radius : 5px;
    outline : none;
    overflow-y : auto;
    overflow-x : hidden;
}