/*
Theme Name: MyTheme
Theme URI: https://example.com/mytheme
Author: Adek Ślęzak
Author URI: https://example.com
Description: Minimalistyczny szkielet motywu WordPress zgodny z dobrymi praktykami.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mytheme
Tags: minimalistyczny, dostępność, edytor-blokowy, HTML5
*/

/* Podstawowy styl resetujący marginesy i czcionki */
.sub-menu{
	position:absolute;
	top:-999px;
}
.sub-menu:focus-within{
	top:130px;
}
.sub-menu:hover .sub-menu{
	top:130px;
}
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #111;
}

header, footer {
  background-color: #f5f5f5;
  padding: 1rem;
  text-align: center;
}

main {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

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

nav ul li {
  display: inline-block;
  margin: 0 1rem;
}

.entry-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
