.muted, .muted .highlight {
    color:grey!important
}

.theme-col {
    color: var(--primary-col)!important;
}

.highlight {
    color: var(--secondary-col)!important;
}
.highlight-3 {
    color: var(--tertiary-col)!important;
}


.theme-toggle-container {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
}
.theme-toggle-button {
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    background: none;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    color:grey;
}
.theme-toggle-button:hover {
    background-color: var(--secondary-col);
}
.hide {
    display: none;
}

h1 {
    color: var(--primary-col)!important;
    text-shadow: 1px 0 var(--secondary-col), 0 2px 0 var(--secondary-col), 0 3px 0 var(--secondary-col), 0 4px 0 var(--secondary-col), 0 5px 0 var(--secondary-col), 0 6px 1px var(--secondary-col), 0 0 5px var(--secondary-col), 0 1px 3px var(--secondary-col), 0 3px 5px var(--secondary-col), 0 5px 10px var(--secondary-col), 0 20px 20px var(--secondary-col);
    transition: 0.3s ease;
}

h1:hover {
    text-shadow: none;
    transform: translate(0, 6px);
    cursor: pointer;
}

.square-img {
    max-height: 250px!important;
    width: auto;
    aspect-ratio: 1/1;
}

.body-text {
    font-size: 2rem;
}


body.dark 
img.invert-dark {
    filter: invert()
}