html, body {
    overflow: hidden;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #fafafa;
}

.swagcat-image {
    width: 50%;
    max-width: 750px;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.swagcat-image img {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 2px 2px 8px rgba(0,0,0, 0.2);
    background-color: black;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 5px 0;
}

.watermark {
    font-family: Arial;
    font-size: 9pt;
    opacity: 25%;
    cursor: pointer;
    display: inline-block;
}

.watermark a {
    color: inherit;
    text-decoration: none;
}

/* make hover functionality only work on desktop */
@media (hover: hover) and (pointer: fine) {
  .watermark:hover + .reasoning {
    display: block;
  }
}

.reasoning {
    display: none;
    position: fixed;
    z-index: 1000;
    pointer-events: none;
    box-shadow: 2px 2px 8px rgba(0,0,0, 0.2);
}

.reasoning img {
    max-width: 800px;
    height: auto;
    display: block;
}