h1.headername {
    display: none;
}

.headerimage {
    max-height: 4rem;
}



.screenshotcontainer {
    height: 60vh;
    justify-items: center;
}

figure {
    align-content: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
figcaption {
    max-width: 14rem;
}

.screenshot {
    max-height: 100%;
    width: auto;
    box-shadow: var(--pico-card-box-shadow)
}

footer.a {
    padding-right: 1em;
}

.maincontainer {
    min-height: 60dvh;
}

.mainfooter {
    position: sticky;
    bottom: 0;
    width: 100%;
    z-index: 2;
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
    background-color: var(--pico-header-background);
}

.helpscreenshotfull {
    position: relative;
    width: 100%;
    height: auto;
}

.helplabel {
    position: absolute;
}

.helplabeltext {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    background-color: #e6f0f280;
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem); 
    -moz-border-radius: 1.5rem; 
    -webkit-border-radius: 1.5rem; 
    border-radius: 1.5rem;
    width: 3rem;
    height: 3rem;
    position: relative;
    text-align: center;
    line-height: 2.4rem;
    box-shadow: var(--pico-card-box-shadow);
}

.languagedropdown {
    width: fit-content;
}

.customspace{
    height: 3rem;
}

[data-theme="light"],
    :root:not([data-theme="dark"]) {
        --pico-background-color: #e6f0f2;
}

 @media only screen and (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --pico-background-color: #0f181a;
  }
}

[data-theme="dark"] {
  --pico-background-color: #0f181a;
}

@media (min-width: 576px){
    .helpscreenshotfull{
        width: 24em;
    }
}

@media (min-width: 768px) {
    .grid.screenshotgrid {
        grid-template-columns: repeat(auto-fit, minmax(35%, 1fr));
    }
}

@media (min-width: 992px) {
    .grid.screenshotgrid {
        grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    }
}