body {
    font-family: 'Tenor Sans', sans-serif;
}

input {
    font-family: 'Tenor Sans', sans-serif;
}

h1{
    display: inline-block;
    margin-left: 10px;
    font-size: 1.5em;
}

html {
    box-sizing: border-box;
  }
  *, *:before, *:after {
    box-sizing: inherit;
  }

.logo {
    max-width: 80px;
    margin-bottom : -40px;
}

.header {
    max-width: 500px;
    margin: auto;
  }

.content {
    padding: 20px;
    max-width: 500px;
    min-height: 400px;
    margin: auto;
    background: #f2f2f2;
}

.form-entry {
    margin: 15px 0;
}

.form-input input {
    width : 100%;
    height : 30px;
}

.textarea input {
    height : 60px;
}




.csvtable {
    table-layout: fixed;
    width: 400%;
    white-space: nowrap;
}

.csvtable td {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width:10%;
    border-bottom: 1px solid black;
}