body {
    display: flex;
    justify-content: center;
    margin: 0px;
}
.course-completed-checkbox {
    width: 30px;
    justify-content: space-between;
    width: "100%";
}

.roboto {
    font-family: "Roboto", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
}

.course-card {
    font-family: "Roboto", serif;
    background-color: white;
    border-style: solid;
    border-radius: 20px;
    width: 250px;
    border-color: black;
    padding: 15px;
    margin: 30px;
}

#grid-container {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 0.1fr 1fr 0.1fr 1fr;
}

#title-bar {
    background-color: darkred;
    grid-column: 1 / 7;
}

.course-identifier {
    font-size: 40px;
    margin: 0px;
}

.course-name {
    font-style: italic;
    font-size: 25px;
}

.grade {
    font-size: 25px;
}

input {
    width: 30px;
    height: 30px;
    border-radius: 0px;
    border-width: 0px;
    border-bottom-width: 5px;
    font-size: 25px;
    padding: 0px;
    text-align: center;
}

.semester-label {
    font-size: 25px;
}

.link {
    fill: none;
    stroke: #ccc;
    stroke-width: 2px;
}
  
.node circle {
    fill: #fff;
    stroke: steelblue;
    stroke-width: 3px;
}
  
.node text {
    font: 12px sans-serif;
}