*,
::before,
::after {
  box-sizing: border-box;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto, "Helvetica Neue", Arial, sans-serif, Apple Color Emoji, "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

nav a {
    display: inline-block;
    margin-bottom: 20px;
    font-weight: bold;
    text-decoration: none;
    margin-inline-end: 10px;
    color: #FFF;
}

searchbar {
  float: inline-end;
  display: inline-block;
  margin-bottom: 20px;
}

searchbar input {
  background-color: transparent;
  border-radius: 5px;
}

searchbar .button {
    border: none;
}


body {
  min-height: 100vh;
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
  display: grid;
  gap: 3vw;
  grid-template-rows: min-content 1fr min-content;
}

a {
  color: currentColor;
}

footer {
  border-top: 2px dotted;
  text-align: center;
}

header {
  border-bottom: 1px solid;
}

.template-homepage main {
  text-align: center;
}

.skip-link {
  position: absolute;
  top: -30px;
}

.skip-link:focus-visible {
  top: 5px;
}

img{
    max-width:100%;
    height: auto;
}

nextprev {
    text-align: center;
    display: block;
    margin: 20px;
}

main a:visited, a:link, a:active {
    text-decoration: none;
    color: #FFD42A;
}

.tags {
    font-size: small;
}

button {
    background-color: transparent;
    border-color: transparent;
    color: #FFD42A;
}