/* -------------------------------------------------------- */
/* VARIABLES */
/* -------------------------------------------------------- */
/* mobile */
/* -------------------------------------------------------- */
/* BASICS */
/* -------------------------------------------------------- */
* {
  scrollbar-color: #ed91cf #13032d;
  /* padding included while calculating dimensions of a thing */
  box-sizing: border-box;
  cursor: url("assets/pink-cursor.png"), auto;
}

/* highlighted content */
::-moz-selection {
  background: #bdb1cf;
  color: #13032d;
}
::selection {
  background: #bdb1cf;
  color: #13032d;
}

h1:focus {
  outline: none;
}

body {
  max-width: 100vw;
  line-height: 1.375;
  font-family: "Pangolin", "iA Writer Quattro S", "Droid Sans", "DejaVu Sans", "Tahoma", "Verdana", sans-serif;
  font-size: 1.2em;
  padding: 0px 5vw 0px 5vw;
  margin: 0;
  color: #bdb1cf;
  background-color: #13032d;
  background-image: url("assets/square background texture.png");
}

a {
  color: #ed91cf;
}
a:hover, a:focus {
  color: #f9c22b;
}
a, a * {
  cursor: url("assets/yellow-cursor-stars.png"), auto;
}

button {
  color: inherit;
  font: inherit;
  transition: transform 0.5s ease;
}
button:hover {
  border-color: #f9c22b;
  transform: scale(105%);
  cursor: url("assets/yellow-cursor-stars.png"), auto;
}

/* space between list items */
li + li {
  margin-top: 10px;
}

/* height of <br> */
br {
  display: block;
  margin-top: 10px;
}

input:not([disabled]), [role=button]:not([disabled]) {
  cursor: url("assets/yellow-cursor-stars.png"), auto;
}
input[type=checkbox]:not(:checked), [role=button][type=checkbox]:not(:checked) {
  /*changes color of unchecked box*/
  filter: brightness(0) saturate(100%) invert(99%) sepia(71%) saturate(2164%) hue-rotate(183deg) brightness(86%) contrast(85%);
}

/* -------------------------------------------------------- */
/* LAYOUT */
/* -------------------------------------------------------- */
.container {
  display: grid;
  grid-template: "sidebar main" 100vh/1fr 3fr;
  gap: 10px;
}

/* mobile */
@media only screen and (max-width: 800px) {
  .container {
    display: grid;
    grid-template: "sidebar" "main";
  }
}
.left-bar {
  grid-area: sidebar;
  margin: 2vw;
  display: flex;
  flex-direction: column; /* sets main axis */
  justify-content: center; /* positions items on main axis */
  align-items: center; /* positions items on secondary axis */
}
.left-bar nav {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin: 20px;
  font-size: 1.1em;
}
.left-bar nav > * {
  text-decoration-line: none;
  padding: 15px;
  border-radius: 8px;
}

.right-bar {
  grid-area: main;
  width: auto;
  margin: 4vh 2vw 4vh 2vw;
  padding: 4vh 2vw 4vh 2vw;
  overflow: scroll;
}
.right-bar article {
  padding-bottom: 10px;
}

/* -------------------------------------------------------- */
/* REUSABLE CLASSES */
/* -------------------------------------------------------- */
/* desktop only */
@media only screen and (min-width: 800px) {
  .flex-cols {
    display: flex;
    flex-direction: row;
    gap: 20px 20px;
  }
  .two-cols {
    -moz-columns: 2;
         columns: 2;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .col {
    display: inline-block;
  }
  .flex-rows {
    display: flex;
    flex-direction: column;
  }
}
.outlined {
  color: inherit;
  background-color: #13032d;
  border-color: #ed91cf;
  border-style: solid;
  border-width: 2px;
  border-radius: 10px;
}

.drop-shadowed {
  filter: drop-shadow(4px 4px #ed91cf);
}

.icon {
  height: 1.2em;
  vertical-align: sub;
  margin-right: 0.2em;
}

.blinkies {
  padding-top: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 350px;
}

.widget {
  margin: 10px 0px 10px 0px;
  padding: 5px 10px 5px 10px;
}
.widget a {
  text-decoration-line: none;
}

.settings {
  position: fixed;
  bottom: 0;
  right: 0;
  display: flex;
  margin: 1.5vw;
  padding: 0.5vw;
  z-index: 1;
}
.settings input {
  margin: 0px;
  margin-right: 1vh;
  width: 1.2vw;
  /*changes color of checked box*/
  accent-color: #bdb1cf;
}
.settings label {
  line-height: 1.8vw;
  font-size: 1.2vw;
}

.hide {
  display: none;
}

.vline {
  margin-right: 5px;
  border-right: 2px dashed #bdb1cf;
  flex-grow: 1;
}

.active {
  border-color: #f9c22b;
}

/* -------------------------------------------------------- */
/* SPECIFIC STUFF */
/* -------------------------------------------------------- */
#lumi-pic-div {
  position: relative;
  height: 350px;
  width: -moz-fit-content;
  width: fit-content;
}
#lumi-pic-div #lumi-pic {
  height: 100%;
}
#lumi-pic-div #lumi-pic-credits {
  font-size: 66%;
  text-align: right;
  width: 50px;
  position: absolute;
  right: 0px;
  top: 120px;
  opacity: 0%;
  transition: opacity 0.5s ease;
}
#lumi-pic-div #lumi-pic:hover + #lumi-pic-credits,
#lumi-pic-div #lumi-pic-credits:hover, #lumi-pic-div:focus-within #lumi-pic-credits {
  opacity: 100%;
}

.lastfm {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 350px;
  margin: 10px 0px 10px 0px;
  padding: 5px 10px 5px 10px;
}
.lastfm img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
  margin: 5px;
  transition: transform 20s ease;
}
.lastfm #lastfm__track-info * {
  margin: 5px 5px 5px 0px;
}
.lastfm #lastfm__track {
  font-weight: bold;
}
.lastfm #lastfm__date {
  font-size: 75%;
  font-style: italic;
}
.lastfm:hover #lastfm__album-cover {
  transition: transform 60s linear;
  transform: rotate(360deg);
}

#last-changelog-date {
  font-size: 75%;
  font-style: italic;
}

.favs-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 20px;
  justify-content: space-between;
}

.fav {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.fav .fav__format {
  display: inline;
  vertical-align: text-top;
  height: 20px;
}
.fav .fav__cover {
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 40%;
  transition: transform 0.75s ease;
}
.fav .fav__cover img {
  width: 100%;
}
.fav .fav__title {
  font-size: 20px;
  font-weight: bold;
}
.fav .fav__info {
  margin-bottom: 10px;
}
.fav:hover .fav__cover {
  transform: scale(105%);
}

.neighbors {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px 4px;
}

.neighbor {
  display: inline-block;
  text-align: center;
  line-height: 31px;
  height: 31px;
  width: 88px;
}
.neighbor img {
  width: 100%;
  vertical-align: bottom;
}

.crafts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 20px 20px;
}

.craft {
  position: relative;
  min-width: 150px;
  max-width: 300px;
}
.craft img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.75s ease;
}
.craft span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 80%;
  background: rgb(from #f9c22b r g b/0.7);
  color: #13032d;
  opacity: 0;
  border: 2px solid #13032d;
  border-radius: 10px;
  text-align: center;
  padding: 5px 10px;
  transition: opacity 0.5s ease;
}
.craft span:hover, .craft span:focus {
  opacity: 1;
}
.craft:hover img, .craft:focus img {
  transform: scale(115%);
  cursor: url("assets/yellow-cursor-stars.png"), auto;
}
.craft:hover span, .craft:focus span {
  opacity: 1;
  cursor: url("assets/yellow-cursor-stars.png"), auto;
}

dialog {
  min-width: 50%;
  width: -moz-min-content;
  width: min-content;
  padding: 0px;
}
dialog > div {
  padding: 20px;
}
dialog > div h2 {
  margin-top: 0;
}
dialog > div img {
  display: block;
  margin: auto;
  min-height: 200px;
  max-height: 300px;
  width: 300px;
  max-width: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
dialog > div img[role=button] {
  display: inline-block;
  position: absolute;
  top: 0px;
  right: 0px;
  margin: 20px;
  padding: 0px;
  min-height: 0px;
  height: 30px;
  width: 30px;
}
dialog::backdrop {
  background: rgb(from #ed91cf r g b/0.1);
}

.blog-post {
  margin-bottom: 20px;
}
.blog-post .post-info {
  min-width: 200px;
}
.blog-post .post-info h2 {
  margin: 10px 0px 10px 0px;
}
.blog-post .post-date {
  margin-bottom: 0.5em;
}

.tags {
  margin-bottom: 1em;
}

.tag {
  margin: 3px 0px 3px 0px;
  padding: 5px;
  font-size: 75%;
}/*# sourceMappingURL=style.css.map */