body {
    width: 100%;
    margin: 0px;
    padding: 0px;
    font-family: Roboto;
}

main {
    padding: 2%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    width: 100%;
}

.inputArea {
    width: 90%;
    display: flex;
    flex-direction: column;
}

.input {
    margin-bottom: 2%;
    display: flex;
    flex-direction: column;
}

button {
    width: 100%;
    margin-bottom: 2%;
}

.output {
    width: 90%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid rgb(0, 0, 0);
    padding: 1%;
}

@media (min-width: 481px) {

    main {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
    }

    .inputArea {
        width: 45%;
    }

    .output {
        width: 45%;
    }

    button {
        width: 50%;
    }
}