html
{
    font-family: "Arial sans-serif";
}

body
{
    background-color: rgba(251,235,255,0.7);
    /*margin-bottom: 125px;*/
    display: flex;
    flex-direction: column;
    height: 100%;
}

header
{
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px; 
}

header h1
{
    font-size: 6vw; 
}

nav
{
    
}

div#header_wrap
{
    background: #ffd3f0;  /* #f5b3ff */
}

div#menu_wrap
{
    border-bottom: 1px solid #f5b3ff;
    border-top: 1px solid #f5b3ff; 
   /* background: red; */
     
}

div#menu_fade
{
    background-image: linear-gradient(to bottom, #ffd3f0, #FBEDFF);
}



nav li:hover
{
    /*border-right: 1px solid #fff;
    border-left: 1px solid #fff;*/
    /*background-color: lightgray*/; 
}

nav .nav-link
{
    /*border-right: 1px solid #000;
    border-left: 1px solid #000;*/
    margin-left: 20px;
    color: rgba(96, 26, 41, 0.64) !important;
}

nav li.active a
{
    /*border-bottom: 1px solid #000;*/
    font-weight: bold;
    color: rgba(183, 6, 81, 0.9) !important;
}

h1
{
    margin-top: 20px;
    font-weight: normal; 
}

.curvy
{
    font-family: 'Alex Brush';    
}

.pinkify
{
    color: #a84d6c;
    text-shadow: 6px 4px 7px #999;
}

main
{
	background-color: #FBEDFF;
    
    flex: 1 0 auto; 
}

.white-section
{
    background-color: white;
    padding: 25px;
    border: solid lightgray 1px;
    border-radius: 10px;
}

.white-section-red-border
{
    background-color: white;
    padding: 25px;
    border: solid #ffd3f0 1px;
    border-radius: 10px;
    
}

.table thead th
{
    border-bottom-color: #ffd3f0;
}

.table th, .table td
{
    border-top-color: #ffd3f0;
}

hr.separator
{
    border-color: #ffd3f0;
    border-width: 4px;
}

.sidebar
{

}

.sidebar-item
{
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid gray;
    margin-bottom: 10px; 
}

.footer
{
    /*
    position: fixed;
    bottom: 0;
    left: 0; */
    flex-shrink: 0;
    width: 100%;
    height: 120px; 
    line-height: 60px; 
    background-color: #444;
}

.hide-desktop
{
    display: none;
}

@media screen and (max-width: 780px)
{
    .hide-mobile
    {
        display: none;  
    }
    
    .hide-desktop
    {
        display: block;  
    }
}