#landingPageContent
{
    display: grid;
    grid-template-columns: 18vw 1fr 22vw;
    padding: 1.5rem;
}

#profileInfo img 
{
    margin: 20px;
    border-radius: 100%;
    opacity: 80%;
    filter: grayscale(100%); 
}

#profileInfo table th
{
    padding: 0.25rem 0;
    padding-right: 2rem;
    text-align: left;
    vertical-align: top;
    font-weight: bolder;
}


#clock
{
    width:max-content;
    text-align: center;
    font-family: kode-mono, monospace;
    vertical-align: middle;
    gap: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
#clock .time
{
    line-height: 2ex;
    font-size: 3.5rem;
    font-weight: bolder;
}
#clock .date
{
    line-height: 2ex;
    font-size: 1.5rem;
    font-weight: bold;
}

.topBar {
    grid-column: 1/4;
    display: flex;
    justify-content: center;
}

.mediaLink
{
    display: flex;
    flex-direction: row;
    max-height: 2em;
    padding: 0;
    gap: 10px;
    color: #aacfd1;
    text-decoration: none;
}

.progressBar
{
    display: flex;
    flex-direction: row;
    max-width: 100%;
    min-height: 1rem;
    gap: 0.5rem;
}

.progressSectionFull {
    background-color: var(--themeBlue);
    width: 100%;
}

.progressSection {
    border: 1px solid var(--themeBlue);
    width: 100%;
}

.buttonMenu  button, h1, h2, h3, h4, h5, h6, p, a, button, input, hr
{
    text-align: left;
    display: inline-block;
    background-color: transparent;
    width: 100%;
    color: var(--themeBlue);
    text-wrap: wrap;
}

.button {
    font-size: inherit;
    padding: 0.75rem 0.5rem;
    text-decoration: none;

    border: 0.1rem solid transparent;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
    text-shadow: none;
    transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
} 

.button:hover {
    border: 0.1rem solid var(--themeBlue);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, .5), 0 0 20px rgba(255, 255, 255, .2);
    outline-color: var(--themeBlue);
    text-shadow: 1px 1px 2px var(--themeBlue); 
}