
body{
    background-image: url("TealGrey.gif");
    background-repeat: repeat;
    animation: LittleMove 10s linear infinite;
    }

@keyframes LittleMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 96px 96px;
    }
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Georgia', serif;
  color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 2rem;
}

.panel-container {
  background: rgba(15, 15, 15, 0.8);
  border: 3px double #5a5a5a;
  border-radius: 12px;
  padding: 2rem;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
}

h1 {
  font-family: 'UnifrakturCook', cursive;
  font-size: 3rem;
  text-align: center;
  color: #e20b0b;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px black;
}

.panel-section {
  margin-bottom: 1.8rem;
}

.panel-section h2 {
  font-size: 1.3rem;
  color: #3bcf00;
  margin-bottom: 1rem;
  text-shadow: 0 0 3px #000;
}

ul {
  list-style-type: square;
  padding-left: 1.5rem;
}

li {
  margin: 0.5rem 0;
}

a {
  color: #d0d0ff;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #ffffff;
  text-decoration: underline;
}
