/*
  Modern CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
  -webkit-text-size-adjust: none;
}

body {
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  height: auto;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

/* SCSS Framework boilerplate from Ristretto: https://github.com/kylelarkin/ristretto */
* {
  box-sizing: border-box;
}

body, select, input, textarea {
  color: #333;
}

::selection {
  background: #0089BA;
  color: #000;
  text-shadow: none;
}

a:link {
  -webkit-tap-highlight-color: transparent;
}

body {
  font-display: swap;
}

nav ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

ul li::marker {
  color: var(--wp--preset--color--orange-50);
}

body.login {
  background: #007099;
}
body.login div#login h1 a {
  background: url("../img/wp-login-logo-ristretto.png") no-repeat 0 0;
  background-size: contain;
  margin: 0 0 0 23px;
  width: 274px;
}
body.login #nav a, body.login #backtoblog a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all 0.25s ease-out;
}
body.login #nav a:hover, body.login #backtoblog a:hover {
  color: #fff;
  text-decoration-color: #fff;
}
