body { 
  background-color:#dfddf3;
}
h1 {
  color:#463e55;
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
}
body {
  color: #463e55;
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
  padding: 0 0.5rem 2rem 0.5rem;
}
main {
  margin: auto;
  max-width: 80ch;
  font-family: 'Courier New', Courier, monospace;
}
footer {
  margin: auto;
  max-width: 100ch; 
  font-family: 'Courier New', Courier, monospace;
}
p {
  margin: auto;
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
}
img {
  max-width: 100%;
}
html {
  font-size: 18px;
  line-height: 1.45;
}
main * {
  margin-block: 0 1rem;
}
root {
   --standard-border-radius: 5px;
  --border-width: 1px;
}

.pill-nav a {
  display: inline-block;
  color: black;
  text-align: center;
  padding: 14px;
  text-decoration: none;
  font-size: 17px;
  border-radius: 5px;
}

.pill-nav a:hover {
  background-color: #edecf8;
  color: black;
}

.pill-nav a.active {
  background-color: #7068ca;
  color: black;
}
div.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

div.gallery-item {
  margin: 5px;
  border: 1px solid #ccc;
  width: 180px;
}

div.gallery-item:hover {
  border: 1px solid #463e55;
}

div.gallery-item img {
  width: 100%;
  height: auto;
}

div.gallery-item div.desc {
  padding: 15px;
  text-align: center;
  color:#463e55;
  font-family: 'Courier New', Courier, monospace
}
.gallery-container {
    display: grid;
}
.button1 {
  background-color:#463e55;
  color:#dfddf3;
  cursor: pointer;
  border-radius: 4px;
  padding: 10px 24px;
}
.button2 {
  background-color:#463e55;
  color:#dfddf3;
  cursor: pointer;
  padding: 10px 24px;
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
}
.btn-group .button:not(:last-child) {
  border-right: none; 
  }
.btn-group .button2:hover {
  background-color: #7068ca;
}
.container {
  display: grid;
  grid-template-areas:
    "header header"
    "menu content"
    "footer footer";
  grid-template-columns: 1fr 3fr;
  gap: 3px;
  background-color: #7068ca;
  padding: 5px;
}
.container div {
  background-color: #edecf8;
  padding: 10px;
}
.container div.header {
  grid-area: header;
  text-align: center;
}
.container div.menu {
  grid-area: menu;
}
.container div.content {
  grid-area: content;
}
.container div.footer {
  grid-area: footer;
  text-align: center;  
}