/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification 
for details on configuring this project to bundle and minify static web assets. */

html,body 
{
    height:100%;

    background-color: cornflowerblue; 
}

body
{
    display: flex;
    flex-direction: column;
}

.mainBody
{
    flex: 1 0 auto;
}

.bodyContent
{
    margin-right:25%;
    margin-left:25%;
}

.RuckRegisterPanel
{
    background-color:white;
}

.RuckRegNavBar
{
    background-color:white;
}

.hidden
{
    display:none;
}

footer
{
    text-align: center;
    flex-shrink: 0;
}

table, th, td
{
    border: 1px solid black;
    border-collapse: collapse;
}

th, td
{
    padding: 5px;
}

#navLogo
{
    margin-right:10vw;
}

#navBar
{
    
}

#title
{
    color:white;
    font-family:'Times New Roman';
    font-size:x-large;
}

/*Mobile stuff*/
@media screen and (max-width: 1400px) 
{
    #navLogo
    {
        margin-right: 2vw;
    }

    #navBar 
    {
        float: none!important;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}


@media screen and (max-width: 950px) {
    #header {
        text-align: center;
    }

    .bodyContent
    {
        width: 100%!important;
        text-align:center;
        margin-left:auto;
        margin-right:auto;
    }

    .w3-bar-item 
    {
        text-align: center;
        width: 100%!important;        
        position: relative;
        display: block;
    }

    #navBar 
    {
        float: none !important;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    #navLogo
    {
        margin-left: auto;
        margin-right: auto;
    }

    #title 
    {
        font-size: medium;
    }
}