@import url(fonts.css?v=1.2.1);

:root{ --cols: 10; }

body {
    font-family: var(--pl-regular);
    background-color: #2e2e2e;
    color: white;
    text-align: center;
}

h1 {
    font-family: var(--pl-bold);
}

h3 {
    font-family: var(--pl-regular);
}

.button-container {
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
    gap: 24px;
}

button {
    font-family: var(--pl-regular);
    font-size: 120%;
    border-style: solid;
    border-radius: 15px;
    border-width: 2px;
    border-color: white;
    background-color: #2e2e2e;
    color: white;
    min-width: 220px;
    height: 55px;
    cursor: pointer;
    margin-left: 5px;
    margin-right: 5px;
}

img.qrcode {
    height: auto;
    padding-bottom: 10px;
}

@media (max-width: 767px) {
    img.qrcode {
        width: 100%;
    }
}

@media (min-width: 768px) {
    img.qrcode {
        width: 35%;
    }
}

.grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(var(--cols), 1fr);
    gap: 10px;
    width: auto;
    justify-content: center;
    align-items: center;
    margin: 10px;
}

.cell {
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
    position: relative;
}

.cell img{
    display: block;
    width: 100%;
    height: auto;
    transform-origin: center center;
    transition: transform 180ms cubic-bezier(.2,.9,.2,1);
    touch-action: manipulation;
    cursor: pointer;
}

.cell img:hover {
    transform: scale(1.2);
    position: relative;
    z-index: 10;
}

@media (max-width: 600px) {
    :root{ --cols: 3;}
}

.link-container {
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
    gap: 24px;
}

.link-container a {
    display: block;
    width: 100%;
    margin: 4px 0;
}

details {
    width: 100%;
}

a {
    font-family: var(--pl-extralight);
}

a:link {
    color: aqua;
    padding-left: 5px;
    padding-right: 5px;
}

a:active {
    color: firebrick;
}

a:visited {
    color: lightblue;
}

summary {
    font-family: var(--pl-extralight);
    cursor: pointer;
    padding-bottom: 15px;
}

li {
    padding-top: 20px;
    padding-bottom: 20px;
}

p {
    font-family: var(--pl-extralight);
}

p.loading-msg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 10px;
}

input {
    font-family: var(--pl-regular);
    font-size: 17px;
    width: 300px;
    height: 30px;
    margin-bottom: 21.440px;
    background-color: #5a5a5a;
    color: white;
    padding: 0px;
    border-radius: 6px;
    border-color: #bebebe;
    border-style: solid;
    padding-left: 3px;
}

input:focus {
    outline: none;
}

input::placeholder {
    color: #bebebe;
    text-align: center;
    font-size: 17px;
}