@charset "UTF-8";



@font-face {
  font-family: "DottyShadow";
  src: url("/assets/fonts/DottyShadow.ttf") format("truetype");
}

@font-face {
  font-family: "Graphers";
  src: url("/assets/fonts/Graphers.ttf") format("truetype");
}

@font-face {
  font-family: "Lead";
  src: url("/assets/fonts/Lead.ttf") format("truetype");
}

@font-face {
  font-family: "France";
  src: url("/assets/fonts/France.otf") format("truetype");
}

.im-fell-great-primer-regular {
  font-family: "IM Fell Great Primer", serif;
  font-weight: 400;
  font-style: normal;
}

.im-fell-great-primer-regular-italic {
  font-family: "IM Fell Great Primer", serif;
  font-weight: 400;
  font-style: italic;
}



* {
  box-sizing: border-box;
}




.tableone {
  justify-content: center;
   background-color: #eefdcc;
  margin-top: 20px;
  border: double 7px;
  padding: 5px;
  font-family: "Playfair Display";
  font-size: 20px;

}













body {
  margin: 0;
  background-image: url("/assets/Photos/twoone.jpg");
  background-size: 25%;
  background-repeat: repeat;
  font-family: Arial, sans-serif;
}

.logowrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.logo,
.menu,
.box {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.logo {
  display: flex;
  justify-content: center;
}

.asciilogo {
  display: inline-block;
  max-width: 100%;
  text-align: center;
  font-family: "Courier New", monospace;
  white-space: pre;
  line-height: 1;
  font-size: 10px;
  color: #eefdcc;
  margin: 0 auto;
  transition: 0.3s ease;
  animation: neonIdle 2s infinite alternate;
  text-shadow:
    1px 1px 0 #eefdcc,
   -1px -1px 0 #eefdcc,
    1px -1px 0 yellow,
   -1px 1px 0 yellow,
    0 0 6px white,
    0 0 12px white;
}

.asciilogo:hover {
  color: deeppink;
  animation: neonFlicker 1s infinite alternate;
}

@keyframes neonIdle {
  0% {
    text-shadow:
      1px 1px 0 yellow,
     -1px -1px 0 yellow,
      1px -1px 0 yellow,
     -1px 1px 0 yellow,
      0 0 4px white,
      0 0 8px white;
  }
  50% {
    text-shadow:
      1px 1px 0 yellow,
     -1px -1px 0 yellow,
      1px -1px 0 yellow,
     -1px 1px 0 yellow,
      0 0 6px white,
      0 0 12px white;
  }
  100% {
    text-shadow:
      1px 1px 0 yellow,
     -1px -1px 0 yellow,
      1px -1px 0 yellow,
     -1px 1px 0 yellow,
      0 0 8px white,
      0 0 14px white;
  }
}

@keyframes neonFlicker {
  0% {
    text-shadow:
      1px 1px 0 green,
     -1px -1px 0 green,
      1px -1px 0 rebeccapurple,
     -1px 1px 0 rebeccapurple,
      0 0 6px deeppink,
      0 0 12px deeppink,
      0 0 18px white;
  }
  50% {
    text-shadow:
      1px 1px 0 red,
     -1px -1px 0 red,
      1px -1px 0 rebeccapurple,
     -1px 1px 0 rebeccapurple,
      0 0 8px deeppink,
      0 0 16px deeppink,
      0 0 20px white;
  }
  100% {
    text-shadow:
      1px 1px 0 yellow,
     -1px -1px 0 yellow,
      1px -1px 0 rebeccapurple,
     -1px 1px 0 rebeccapurple,
      0 0 6px deeppink,
      0 0 12px deeppink,
      0 0 18px white;
  }
}

.menu {
  font-family: DottyShadow;
  display: flex;
  justify-content: center;
  margin-top: 5px;
}

.menu ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  margin-right: 70px;
  font-size: 26pt;
}

.menu li:last-child {
  margin-right: 0;
}

.menu a {
  color: #eefdcc;
  text-decoration: none;
}

.menu a:hover {
  color: yellow;
}

.box {
  position: relative;
  margin: 20px auto 0 auto;
  min-height: 800px;
  background-color: rgba(170, 161, 174, 0.9);
  border: solid;
  overflow: auto;
  padding: 10px;
}

.siderow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
  width: 100%;
}

.welcomebox,
.aboutbox {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

.question {
  display: inline-block;
  float: right;
  margin: 10px;
  background-color: #eefdcc;
  border: double 7px;
  padding: 15px;
}

.hello,
.helloabout {
  width: 470px;
  font-size: larger;
  background-color: #eefdcc;
  margin-top: 20px;
  border: double 7px;
  padding: 15px;
}

.buttonbox {
  width: fit-content;
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(5, 88px);
  grid-template-rows: repeat(5, 31px);
  border: 2px solid #000;
  gap: 3px;
}

.buttonbox img {
  width: 88px;
  height: 31px;
  object-fit: fill;
  display: block;
  padding: 1px;
}

.buttonbox > * {
  outline: 1px solid #000;
}

.articles {
  width: 400px;
  height: 200px;
  background-color: #eefdcc;
  margin-top: 10px;
  border: double 7px;
  overflow-y: scroll;
}

.articles p {
  padding: 1px;
}

.articles a{
padding: 2px;
margin-left: 5px;
  
}

.agraphic {
  display: inline-block;
}

.article-title {
  font-family: "Graphers";
  text-align: center;
  font-size: 55px;
  color: black;
  background-color: #eefdcc;
  margin-top: 20px;
  border: double 7px;
  padding: 5px;
}

.article-meta {
  font-family: 'Lora', serif; 
  font-size: 18px;
  text-align: center;
  background-color: #eefdcc;
  border: double 7px;
  padding: 6px 16px;
  display: block;
  width: fit-content;   
  margin: 10px auto;   
  margin-top:-10px;
}




.article-image {
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto 15px auto;
  border: 3px solid #000;
  border-radius: 16px;
  padding: 4px;
  background-color: #fff;
  margin-bottom: -70px;
}

.crossword {
  position: relative;
  margin: 40px auto;
  text-align: center;
  max-width: 100%;
}

.crossword iframe,
.crossword div {
  max-width: 100%;
  height: auto;
}

.article-content {
  padding: 2px;
  margin: 120px;
  
}



.playfair-display { 
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: auto;
  font-style: normal;
}



.article .article-content p {
  font-family: "Ibarra Real Nova";
  font-size: 18px;
 
}


.article .article-content h3{
 font-family: "Ibarra Real Nova";
 font-size: 26px;
  padding: 3px;

  
}

.article-content {
 margin-top: 100px;
  border: double 7px;
  padding: 5px;
  background-color: #eefdcc;
}