.title-bar
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30pt;
    background: none;
}
.title-bar > #title-text-container 
{
    transition: transform 0.7s ease-out;
}
.title-bar:hover > #title-text-container
{
    transition: 0.35s ease-out;
    transform: translate(0, -0%);
}
#title-text-container
{
    display:  flex;
    justify-content: center;
    background: none;
}
#title-text
{
    margin: 0;
    font-size: calc((2rem + 6vw) * .3);
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    user-select: none;
    
    background:linear-gradient(90deg, rgba(100,131,158,1) 0%, rgba(125,212,255,1) 45%, rgba(125,212,255,1) 50%, rgba(125,212,255,1) 55%, rgba(100,131,158,1) 100%);
    background-clip: content-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color:transparent;
}

#title-menu-bar
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 95vw;
    height: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 8pt;
}

.title-menu-btn
{
    margin: 2pt;
    margin-left: 6pt;
    margin-right: 6pt;
    display: flex;
    
    justify-content: center;
    cursor: pointer;
    user-select: none;

    padding: 8pt;
    padding-top: 3pt;
    padding-bottom: 3pt;

    font-size: max(16pt, calc(4vh - 2vw));
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    color: white;
    text-shadow: rgba(0, 0, 0, 0.8) 2pt 3pt 3pt;
    background-color: rgba(55, 90, 121, 0.0);
    border: none;
    border-radius: 4pt;
    transition: 0.6s ease;
}

.social-button
{
    width: 25px;
    height: 25px;
    cursor: pointer;
    display: block;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 0px;
    margin-right: 0px;
}



body 
{
    background-color:rgb(34, 34, 34) ;
    color: white ;
    font-family: 'Inter', sans-serif;
    font-size: 12pt;
}



.top-menu-item
{
    display: inline-flex;
    margin: auto;
    width: auto;
}


.top-menu-btn:active
{
    background-color: #0baedb;
    transition: 0.01s ease;
}

