html {
    box-sizing: inherit;
    background-color: #083c5a !important;
    background:  #083c5a;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

body {
    display: flex;
    background-color: #083c5a;
    background:  #083c5a;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 0em;
}

button {
    border: 1px solid black;
    border-radius: 10px;
    padding: 3%;
    width: 8%;
    margin: 10px;
}

canvas {
    position: relative;
}

button:hover {
    opacity: 0.5;
}

.title-container {
    background-color: #083c5a;
    width: 100%;
    display: grid;
    grid-template-columns: 0.2fr 1fr 0.2fr;
}

.SC-logo-box {
    width: 100%;
}

.title-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

#title-label {
    color: white;
    font-size: 3.5vw;
}

#MEDO-logo {
    width: 100%;
    padding: 10px;
    flex: 2 1;
    height: auto;
    position: relative;
}

.toolbar-container {
    width: 80%;
    margin: 15px;
    border-radius: 5px;
    display: flex;
    flex-flow: column nowrap;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
}

#toolbar-label {
    font-size: 1.8em;
    color: white;
    text-decoration: underline;
}

.toolbar-buttons {
    width: 70%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
}

#interesting-button {
    flex-grow: 1;
    width: 5%;
    min-width: 200px;
    background-color: green;
    color: white;
    font-size: 2vw;
}

#uninteresting-button {
    flex-grow: 1;
    width: 5%;
    min-width: 200px;
    background-color: red;
    color: white;
    font-size: 2vw;
}

.canvas-container {
    width: 75%;
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    flex-grow: 5;
    background-color: white;
}

.canvas-title {
    width: 30%;
    margin: 15px;
    min-height: 10%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    flex-grow: 5;
    background-color: white;
    border: 1px solid black;
    border-radius: 10px;
}

#file {
    display: none;
    background-color: red;
}

label:hover {
    opacity: 0.5;
}

#input-image {
    align-items: center;
    min-width: 60%;
    max-width: 80%;
    height: auto;
    margin: 20px;
}


.output-container {
    display: flex;
    margin: 15px;
    flex-grow: 1;
    justify-content: flex-end;
    flex-flow: column nowrap;
    width: 80%;
}

#output-button {
    width: 15%;
    align-self: flex-end;
    background-color: rgb(71, 71, 70);
    color: white;
    font-size: 2vw;
}

#outputJSONFormat {
    background-color: white;
}