@font-face {
    font-family: 'Avenir Next';
    src: url('AvenirNext/AvenirNext-Regular.ttf') format('truetype'),
        url('AvenirNext/AvenirNext-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Avenir Next';
    src: url('AvenirNext/AvenirNext-Medium.ttf') format('truetype'),
        url('AvenirNext/AvenirNext-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Avenir Next';
    src: url('AvenirNext/AvenirNext-DemiBold.ttf') format('truetype'),
        url('AvenirNext/AvenirNext-DemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Avenir Next';
    src: url('AvenirNext/AvenirNext-Bold.ttf') format('truetype'),
        url('AvenirNext/AvenirNext-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

:root{
    --primary-color: #243f50;
    --secondary-color: #f89b4b;
    --background-color: #f4f4ef;
    --tertiary-color: #c2bbb0;
}

body {
    background-color: var(--background-color);
    color: var(--primary-color);
    font-size: 21pt;
    font-family: 'Avenir Next';
    margin: 0;
}

h1{
    font-size: 24pt;
    font-weight: 600;
    text-align: center;
    margin: 50px 0;
}

select{
    padding: 5px 10px;
    width: 555px;
    text-align: center;
    font-size: 18pt;
    border-width: 3pt;
    border-color: var(--secondary-color);
    color: var(--primary-color);
    font-family: 'Avenir Next';
    background-color: white;
    font-weight: 400;
}

select:focus{
    border-color: var(--secondary-color);
    outline: none;
    font-family: 'Avenir Next';
}

option{
    font-size: 18pt;
    font-family: 'Avenir Next';
}

a {
    color: inherit;
    text-decoration: inherit;
  }

form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
button{
    font-family: 'Avenir Next';
}

.nav{
    background-color: var(--primary-color);
    color: var(--background-color);
    display: flex;
    flex-direction: row;
}

.nav_info{
    display: flex;
    font-size: 14pt;
    font-weight: 400;
    align-items: center;
    margin: 0 50px 0 100px;
    text-align: justify;
}

.file_upload{
    display: none;
}

.file_upload_label{
    display: block;
    padding: 10px 40px;
    background-color: var(--secondary-color);
    font-weight: 500;
    width: max-content;
    margin: 0 10px;
    cursor: pointer;
    font-size: 18pt;
    border-color:  #00ad2e;
    border-style: hidden;
    border-width: 2px;
}

.form_spacing{
    padding: 20px
}

#uploads{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#download_button{
    height: 50px;
    cursor: not-allowed;
}

#download_img{
    opacity: 0.5;
}

#run_block{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

#upload{
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    font-weight: bold;
    font-size: 18pt;
    padding: 10px 40px;
    cursor: pointer;
    margin: 0 10px 0 60px;
}

#logo{
    width: 200px;
    margin: 30px 40px;
}

#dashFrame{
    margin: 30px 0 0 0;
    height: 140vw;
    width: 100%;
}