﻿* {
  box-sizing: border-box;
}
body {
  font-size: 1.2em;
  margin: 0px;
  overflow-y: scroll;
}
h2 {
  font-size: 1.3em;
}
.navwrap {
  display: flex;
  justify-content: center;
  background-color: aliceblue;
  width: 100%;
}
nav {
  flex-basis: 720px;
  background-color: aliceblue;
  width: 100%;
}
.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 1em;
  overflow-wrap: break-word;
}

nav ul.large {
  display: none;
}

nav ul.small {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  gap: 10px;
  padding: 0px;
  align-items: center;
}
nav ul li a,
nav ul li a:visited {
  color: blue;
  text-decoration: none;
}
nav ul li a.active {
  color: green;
  text-decoration: underline;
}

.homelink {
  margin-right: auto;
  font-weight: 700;
  font-size: 1.3em;
}
/* items*/
.subitems_links {
  padding: 1em;
}
.subitems_links,
.subitems {
  list-style-type: none;
}
.subitems > li::before {
  content: "\2022";
  color: #e00000;
  font-weight: 700;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
@media screen and (min-width: 600px) {
  nav ul.small {
    display: none;
  }
  nav ul.large {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    gap: 10px;
    padding: 0px 10px;
    justify-content: space-around;
    align-items: baseline;
  }
}

