#custom-tooltip {
    font-size: 14px;
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 4px 8px;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity .15s ease;
    white-space: nowrap;
    margin: 2px 10px !important;
}
#slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 1px;
    height: 1px;
    transform: scaleX(80) scaleY(40);
    background: transparent;
    cursor: pointer;
}
.smalltext {
    font-size: 12px;
    display: inline;
}
aside {
    font-style: italic;
    font-size: 14px;
}
a {
    font-weight: 700;
}
.nav-button {
    display: inline-block;
    color: #fff;
    font-weight: 700;
    padding: .75rem 1.25rem;
    font-size: 1rem;
    border-radius: 9999px;
    min-width: 140px;
    min-height: 44px;
    text-align: center;
    white-space: nowrap;
    transition: all .3s ease;
    box-sizing: border-box;
    transform: scale(.85);
}
.home-link,
.home-link:focus,
.home-link:hover {
    text-decoration: none !important;
}
.home-link {
    border-radius: 9999px;
    transition: all .3s ease;
    box-sizing: border-box;
}
.home-link:focus,
.home-link:hover {
    transform: scale(1.05);
}
.home-link:active {
    transform: scale(.8);
}
.nav-button-usable:active {
    transform: scale(.75) !important;
}
.nav-button:focus,
.nav-button:hover {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .2);
    transform: scale(.9);
}
.buy-button:active {
    transform: scale(.75) !important;
}
.buy-button:focus,
.buy-button:hover {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .2);
    transform: scale(.9);
}
.buy-button {
    transition: all .3s ease;
}
.shake {
    animation: shake-animation .25s ease-in-out;
}
@keyframes shake-animation {
    0% { transform: translateX(0) scale(.9); }
    25% { transform: translateX(-3px) scale(.9); }
    50% { transform: translateX(3px) scale(.9); }
    75% { transform: translateX(-3px) scale(.9); }
    to { transform: translateX(0) scale(.9); }
}
#popup-message {
    pointer-events: none;
}
@keyframes floatDownFade {
    0% { opacity: 1; }
    to { transform: translateY(0px) translateX(12px); opacity: 0; }
}
.animate-float-down {
    animation: floatDownFade .7s ease-out forwards;
}
.logo {
    user-select: none;
    margin: 0;
}
.logotext {
    cursor: pointer;
}
.logocursor {
    transform-origin: center center;
    
}
.logodiv:hover .logocursor {
    animation: blink .8s infinite;
}
@keyframes blink {
    0%{ opacity: 1; }
    20% { opacity: 1; }
    50% { opacity: 0; }
    80% { opacity: 0; }
    to { opacity: 1; }
}
.main-section {
    margin-right: 10%;
    margin-left: 10%;
}
* {
    font-family: Roboto, 'sans-serif';
}
footer {
    box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}
.project-card:has(.construction) {
    filter: brightness(90%);
}