body {
    background-color: #1d1d1d;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;

}

* {

    box-sizing: border-box;

}

.parent {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.mainpage_container { 

    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: none;
}


.header-custom{

    background-color: black;
    padding: 0px;
    border: 0;
    margin: 0;
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    flex-direction: row;
    height: 7vh;
    align-items: center;
}

h1.header-custom {
    background-color: transparent;
    font-family:  Helvetica, sans-serif;
    font-weight: bold;
    color: white;
    font-size: 4vh;
    margin:  10px 5px 10px 25px;
    padding: 0;
}

.root-container {
    flex-grow: 1;
    margin: 0px;



}



.footnote{

    background-color: rgb(0, 0, 0);
    height: 3vh;
    position: fixed;
    width: 100%;
    bottom: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10pt;
    color: white;
    padding: 5px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;    
}

a.footnote-left:link{
    color: white;
    text-decoration: none;
}

a.footnote-left:visited{
    color: white;
    text-decoration: none;
}

a.footnote-left:hover{
    color: #458ad3;
}

.footnote-left{
    text-align: left;
    width: 100%;
    flex: 1;

    
}

a.footnote-center:link{
    color: white;
    text-decoration: none;
}

a.footnote-center:visited{
    color: white;
    text-decoration: none;
}

a.footnote-center:hover{
    color: #458ad3;
}

.footnote-center{
    text-align: center;
    width: 100%;
    flex: 1;    
}

a.footnote-right:link{

    color: rgb(253, 2, 2);
    text-decoration: none;

}

a.footnote-right:visited{
    color: white;
    text-decoration: none;
}

a.footnote-right:hover{
    color: #458ad3;
}

.footnote-right{
    text-align: right;
    width: 100%; 
    flex: 1;


    
}