<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
  background-image: url("../images/WongeryBG.png");
  display: flex;
  flex-direction: column;
  width: 100vw;
  min-height: 100vh;
  align-content: center;
  /* justify-content: center; */
}

header {
  display: flex;
  align-content: center;
  padding: 10px 0px;
}

header img {
  margin: 0 auto;
}

header a {
  margin: 0 auto;
}

nav {
  background-color: black;
  color: white;
  border-top: 2px solid #34a62f;
  border-bottom: 2px solid #34a62f;
  /* padding-top: 10px; */
  /* margin-top: 10px; */
}

nav a {
  color: white;
  text-decoration: none;
}

nav ul {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  width: 100%;
  padding: 5px 0px 10px 0px;
  font-weight: bold;
}

main {
  padding-top: 15px;
  display: grid;
  column-gap: 15px;
  flex-direction: row;
  /* width: 800px; */
  width: 100%;
  align-self: center;
  grid-template-columns: 200px auto 200px;
}

.textbox {
  margin: 5px;
  padding: 10px;
  border: 5px;
  border-radius: 10px;
  border-style: solid;
  border-color: #34a62f;
  /* background-color: white; */
  /* opacity:  */
  background-image: url("../images/WongeryTextBG.png");
}

.textbox h2 {
  text-align: center;
  font-weight: bold;
}

section h1 {
  /* display:block; */

  text-align: center;
  color: white;
}

.dropdown {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  transition: all 0.5s ease;
  margin-top: 1 rem;
  /* left: 0; */
  display: none;
}

nav ul li:hover &gt; ul,
nav ul li ul:hover {
  visibility: visible;
  opacity: 1;
  display: flex;
  flex-direction: column;
  width: auto;
  padding: 0px 10px;
  padding-top: 10px;
  align-items: flex-start;
  background: black;
}

.dropdown li {
  padding: 10px;
  text-align: left;
}

.article {
  margin: 1px;
  padding: 2px;
  border: 2px;
  border-style: solid;
  border-color: #374738;
}

h4 {
  text-align: center;
  padding-bottom: 5px;
}

.textbox p {
  margin-block-start: 1em;
  margin-block-end: 1em;
}

.new {
  color: #cc2200;
}

.blog li {
  /* padding-left: 20px; */
  margin-left: 20px;
  padding-top: 5px;
  padding-right: 5px;
}

@media screen and (max-width: 650px) {
  nav ul {
    flex-direction: column;
  }
  nav ul li {
    padding: 2.5px 0px 2.5px 0px;
  }
  main {
    grid-template-columns: auto;
    row-gap: 15px;
  }
  header img {
    max-width: 100vw;
  }
}

.article ul {
  list-style-type: disc;
  list-style-position: inside;
}
.article ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.article ul ul,
ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}
.article ol ol,
ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}
.article ul ul ul {
  list-style-type: square;
}

.blog dt {
  display: list-item;
  list-style-type: disc;
  list-style-position: inside;
  margin-left: 5px;
  padding-top: 5px;
  padding-right: 5px;
}

.blog dd {
  margin-top: 5px;
  margin-left: 30px;
  margin-right: 20px;
}

.blog blockquote {
  display: block;
  position: relative;
  padding: 5px 10px 5px 15px;
  margin-left: 40px;
  background: rgba(160, 230, 240, 0.15);
  border: 2px solid rgba(0, 0, 0, 0.3);
  /* border: 1px blue solid;*/
}

/* blockquote::before {
  position: absolute;
  top: 0px;
  left: 0px;
   z-index: -1; 
  height: 100%;
  width: 100%;
  content: " ";
  border: 4px black solid;
  background: #aadddd;
  background: red;
} */
</pre></body></html>