body {
    display: flex;
    flex-direction: column;
    border: 0px;
    margin: 0px;
}
nav {
    flex-direction: row;
}

nav h1 {
    flex: 1;
    text-align: center;
    font-size: xx-large;
    font-weight: normal;
}

aside {
    flex-grow: 1;
    height: 100px;
    flex-direction: row;
}

article {
    width: 70%;
    flex-direction: row;
}

article div {
    padding-bottom: 5%;
}

h4 {
    padding-left: 1%;
    padding-bottom: 10px;
    margin: 0px;
    font-weight: normal;
    font-size: larger;
}

input {
    padding-top: 0px;
    font-size: x-large;
}

button {
    font-size: xx-large;
    justify-content: center;
}

footer {
    display: flex;
    padding-top: 2%;
    justify-content: center;
}
.MainContent {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#rightSide {
    justify-content: end;
}

#fileInput {
    font-size: large;
}

#buttonDiv {
    display: flex;
    justify-content: center;
}

#submitButton {
    background-color: green;
    padding: 1%;
    border-radius: 15%;
}