<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 2s forwards;
}

div.radio audio::-webkit-media-controls-panel {
    background-color: transparent;
}

div.radio audio::-webkit-media-controls-enclosure {
    background-color: transparent;
}

img#logo {
    width: 100px;
}

section.question {
    position: relative;
    z-index: -9999;
}

div.section-question-bg {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: url('/img/indie-question-bg.svg');
    background-size: 100px;
    background-repeat: repeat;
    opacity: .2;
    z-index: -1;
}

div.question-container {
    z-index: 100;
}

.polaroid {
    display: inline-block;
    padding: 10px;
    background: white;
    border: 10px solid white; /* Polaroid border */
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3); /* Soft shadow */
    text-align: center;
}

.polaroid img {
    display: block;
    width: 100%;
    height: auto;
}

.caption {
    font-family: "Courier New", Courier, monospace;
    font-size: 14px;
    margin-top: 10px;
}

h2.question {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

div.answer {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

body.home footer {
    margin-bottom: 60px;
}</pre></body></html>