/* pretty */

.column, #upd {
  border-right: 2px solid mistyrose;
  border-bottom: 2px solid mistyrose;
  border-top: 2px solid lightpink;
  border-left: 2px solid lightpink;
  
  background: linear-gradient(mistyrose, lightpink);
}

/* temp *

div {
  border: solid 1px black;
}

#upd, #upd .inner {
  border: 1px solid black;
}
/*mini boxes*/

#webfind {
  max-width: 200px;
}
/*updates*/
#upd {
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 150px;
  padding: 5px;
}
#upd h4 {
  margin: 0;
}
#upd .inner {
  overflow-y: auto;
  max-height: 200px;
}
/* body */

.column.bulk {
  padding: 5px;
}
.column.bulk .inner {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.column {
  margin: 5px;
}

.column.left, .column.right {
  min-width: 200px;
}
.salad .row {
  display: flex;
  flex: 1 auto 1;
}
#head {
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
}
header img {
  max-height: 300px;
  width: auto;
}
.salad {
  background-color: pink;
}
main {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

/* html */
/*light theme*/
:root, html[data-theme='light'] {
      --background-size: 10%;
      --background-image: url(https://hissedthelovecats.neocities.org/img/bg/2odtile1edit6.png);
    --text-color: crimson;
}
/*dark theme*/
html[data-theme='dark'] {
        --background: url(https://hissedthelovecats.neocities.org/img/bg/homebg.gif);
    --text-color: white;
}

body {
  backdrop-filter: overlay;
  text-align: center;
  /*theme*/
  background-size: var(--background-size);
  background-image: var(--background-image);
  color: var(--text-color);
}