@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
*{
  box-sizing: border-box;
}

:root {
  --light-blue: rgb(40 135 230);
  --dark-blue: rgb(0 90 185);
  --u3a-yellow: rgb(255 200 0);
  --light-green: rgb(100 195 105);
  --forest-green: rgb(16 105 90);
  --u3a-orange: rgb(255 170 50);
  --u3a-purple: rgb(180 160 220);
  --u3a-red: rgb(238 105 90);
}

html {
  background-color: white;
}
body {
  padding: 0;
  margin: 0 auto;
  position: relative;
  max-width: 1400px;
  background-color: white;
  font-family: "DM sans", sans-serif;
  color: black;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  position: relative;
  margin: 20px;
  line-height: 1.25;
  background-color: white;
  min-height: 75px;
  display: flex;
  align-items: center;
  background-image: url('logo125.png');
  background-repeat: no-repeat;
  background-size: contain;
}
nav {
  width: 100%;
  display: grid;
  grid-template-columns:  auto 1fr auto;
  align-items: center;
  min-height: 30px;
  align-items: center;
  background-color: var(--dark-blue);
  color: var(--u3a-yellow);
  font-size: 18px;
  margin: 0;
  padding: 3px;
  max-width: 100%;
  margin: 0 auto;
  text-decoration: none;
  border-bottom: var(--dark-blue) solid 3px;
}
main {
  padding: 0 20px;
  background-color: white;
  flex: 1 0 auto;
}
footer {
  width: 100%;
  background-color: white;
  padding: 1em;
}
h1 {
    color: var(--dark-blue);
}

h2 {
  color: gray;
}
h3 {
  color: gray;
}  
header h1 {
  color: var(--dark-blue);
  margin: 0;
  margin: 0 2% 0 auto;
}
 @media (max-width: 450px) {
   header h1 {
     display: none;
   }
 
 }

a:link {
  text-decoration: none;
  color: var(--dark-blue);
  font-weight: bold;
}
a:visited {
  text-decoration: none;
  color: var(--dark-blue);
  font-weight: bold;
}
a:hover {
  color: var(--light-blue);
  text-decoration: underline;
  font-weight: bold;
}

nav p {
  margin: 0;
  padding: 3px 0;
}

nav a:link {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: .3s all ease-in-out;
}
nav a:visited {
  text-decoration: none;
  font-weight: bold;
  color: white;
}
nav a:hover {
  color: var(--u3a-yellow);
  text-decoration: underline;
  font-weight: bold;;
  transition: .3s all ease-in-out;
}

.menu {
  display: inline;
}

.menu a {
  padding: 10px 0;
  margin-left: 15px;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  align-self: center;
}
.menu-icon {
  display: none;
}
  
#menu-btn {
  display: none;
}

.searchlink {
  margin-left: auto;
}

footer p {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #696969;
  height: 15px;
  margin: 0;
} 
ul {
  list-style-type: none;
  padding-left: 4px;
}
li {
  padding: 5px;
}
.searchterm {
  background-color: #c2e4e2;
}
.rightcolumn {
  width: 300px;
  margin:0px 10px 10px 30px;
  position:relative;
  float: right;
}
.altrow {
  background-color: #e0e0e0
}

.menu {
  display: none;
}

.searchlink {
  grid-column: 3;
  align-self: center;
  margin-right: 20px;
}

.menu-icon {
  grid-column: 1;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  padding: 10px 20px 10px 20px;
  position: relative;
  user-select: none;
  visibility: visible;
}

.navicon {
  background: white;
  display: block;
  height: 2px;
  width: 18px;
  position: relative;
}

.navicon:before {
  top: 5px;
}

.navicon:after {
  top: -5px;
}

.navicon:before,
.navicon:after {
  background: white;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  transition: all 0.2s ease-out;
}

.menu-btn:checked ~ .menu {
  display: grid;
  grid-row: 1;
  grid-column: 2;
  max-height: 360px;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:before,
.menu-btn:checked ~ .menu-icon .navicon:after {
  top: 0;
}





