<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  background-color:rgb(38, 54, 233); 
  color:aquamarine;
} 

.gallery {
  color:rgb(218, 242, 4);
}
.gallery&gt;a {
  color: #f71010;
}

a:hover {
   text-decoration-line: overline;
}

.inside-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px;
  padding: 0px;
  border-radius: 5%;
}
.inside-flex-item {
  color:#f7f7f9;
  text-align: center;
  text-decoration: solid;
  text-emphasis: bold;
  font-size: x-large;
}

.grid-container {
  display: grid;
  grid-template-columns:
    repeat(auto-fit, minmax(160px, 1fr));
  margin: 6px;
  padding: 6px;
  justify-items: center;
  border: 5px;
  border-color: #f71010;
 }
 
 .grid-item {
  border-radius: 5%;
  border-color: #f71010;
  color: rgb(16, 10, 10);
  vertical-align: middle;
  margin: 6px;
  padding: 6px
}
p 
{text-align: center;
  font-size: x-large;
}

.grid-item-1 {
  background-color: aqua;
}
.grid-item-2 {
  background-color: rgb(68, 233, 17);
}
.grid-item-3 {
  background-color: rgb(157, 255, 0);
}
.grid-item-4 {
  background-color: rgb(255, 251, 0);
}
.grid-item-5 {
  background-color: rgb(240, 236, 33);
}

.grid-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

 hr {
  border: none;
  border-top: 3px double #93d10d;
  color: #acec23;
  overflow: visible;
  text-align: center;
  height: 10px;
}

hr:after {
  background: #f71010;
  content: 'Â§';
  padding: 0 4px 4px;
  position: relative;
  top: -13px;
}

.dues_container {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: center;
}

.dues {
  color: #000;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-style: italic;
  font-weight: bold;
  font-size: larger;
  background-color: wheat;
  width: 260px;
  border-radius: 5%;  
  align-self: center;
}
.dues_box {
  text-align: center;
  color: #000;
  background-color: whitesmoke;
}

.dues_box&gt;img {
  width: 220px;
}

.footer {
  background-color: #0099cc;
  color: #ffffff;
  text-align: center;
  font-size: 18px;
  padding: 1ch;
  position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
}
/* ---   css-examples/css-cookbook/sticky-footer--download.html */
html {
  height:100%;
  box-sizing: border-box;
}

body {
  height:100%;
/*  background-color: #fff; */
  color: #333;
/*  font: 1.2em / 1.5 Helvetica Neue, Helvetica, Arial, sans-serif; */
  padding: 0;
  margin: 0;
}

* {
  box-sizing: inherit;
}

section {
  height: 100%
}

.wrapper {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.page-header,
.page-footer {
  background-color: rgb(75, 70, 74);
  color: #fff;
  /*padding: 4px;*/
  text-align: center;
}

.page-body {
  padding: 20px;
}</pre></body></html>