body {
    font: 400 16px system-ui;
    color: #161818;
    padding: 0;
    margin: 0;
    position: relative;
}
h1,h2,h3 {
    margin: 0;
    padding: 0;
    font-weight: 500;
    margin-bottom: 10px;;
}
h1 {
    font-size: 22px;;
}
h2 {
    font-size: 20px;;
}
h3 {
    font-size: 18px;;
}
header {
    display: flex;
    justify-content: space-between;
    background-color: #434849;
    padding: 10px;
    color: white;
    position: sticky;
    top: 0;
    width: 100%;
}
header h1 {
    margin: 0;
}
header nav p {
    color: white;
    display: inline-block;
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
}
.main-container {
    display: flex;
    padding: 30px 0;
    justify-content: space-around;
    flex-flow: column;
}
.latest-uploads {
    margin: 20px;
}
.form-results-container {
    background:#f4fafb;
    padding: 20px;
    width: 95%;
}
form {
    margin-bottom: 10px;
}
input[type=text]::placeholder {
    color: #b4c0c4;
}
input[type=text] {
    width: calc(100% - 20px);
    height: 40px;
    border: 1px solid #e0e0e0;
    padding: 0 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.btn,button,input[type=submit] {
    border: none;
    box-shadow: none;
    outline: none;
    height: 40px;
    background-color: #cee6ef;
    font-size: 12px!important;
    text-transform: uppercase;
    width: 100%;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 10px;
}
.btn:hover,button:hover,input[type=submit]:hover {
    opacity: 0.6;
}
input[type=submit].btnSubmit {
    background-color: turquoise;
}
.panel:first-child {
    border-top: 1px solid #cee6ef;
}
.panel {
    padding: 10px;
    border-bottom: 1px solid #cee6ef;
    border-right: 1px solid #cee6ef;
    border-left: 1px solid #cee6ef;
}
.panel p, p {
    margin: 5px 5px 10px;
}
@media only screen and (min-width: 736px) {
    body header {
        width: calc(100% - 20px);
    }
    .main-container {
        flex-flow: row;
    }
    .form-results-container {
        width: 45%;
    }
    .btn,button,input[type=submit] {
        width: calc(100% / 3 - 3px);
       
    }
}