
html {
    background-color: white;
} 

@media (prefers-color-scheme: dark) {
    html {
	background-color: #000;
    } 
}


.img_dark {
  display: none;
}

@media (prefers-color-scheme: dark) {
    .img_light {
      display: none;
    }
    .img_dark {
      display: block;
    }
}


.padrow {
    height: 10vw;
    /*
    outline: 2px dotted #88f;
    outline-offset: -1px;
    */
}

.row {
    display: flex;
    flex-direction: row;
    /*
    outline: 0.1rem dotted red;
    outline-offset: -1px;
    */
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 0rem;
    margin: 0rem;
} 
.quote {
    align-items: center;
    justify-content: center;
    /*
    outline: 1px dotted #ff0;
    outline-offset: -1px;
    */
    padding: 1em;
    height: 5vw;
    text-align: center;
    font-family: "Ojuju", sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    color: black;
    font-style: normal;
}

.sign {
    padding-left: 10em;
    /*
    outline: 0.4ch dotted #030;
    outline-offset: -1px;
    */
}

.cell {
    /*
    outline: 2px dotted #fff;
    outline-offset: -1px;
    */
    padding: 0rem;
    margin: 0rem;
} 

img { width: 25vw;}
