<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{
    background-image: url('images/f14911cb8b7b2e9883946326f5e2b4e7-2208582849.jpg');
    background-size: cover;
    background-position: center;
    cursor: url('cursors/pinkpointers/Pink%20Cursors%20-%20Normal%20Select.cur'), auto;
}

.bodycontainer{
    padding: 10px;
    border: solid;
    height: 1000px;
    width: 1000px;
    margin: auto;
    margin-top: 20px;
    background-color: black;
    color: deeppink;
}
.header{
    border: solid;
}
h1{
    display: flex;
    justify-content: center;
     color: deeppink;
    font-family: 'courier new', courier, monospace;
    font-size: 50px;
}
p{
    display: flex;
    justify-content: center;
     color: deeppink;
    font-family: 'courier new', courier, monospace;
}
.marquee-wrapper {
  position: relative;
  width: 100vw; /* Full viewport width */
  height: 50px;
  overflow: hidden;
  background-color: deeppink;
  color: white;
  display: flex;
  align-items: center;
}

.marquee-text {
  position: absolute;
  white-space: nowrap;
  animation: marquee 15s linear infinite;
  font-size: 1.5rem;
  font-family: 'courier new', courier, monospace;
  font-weight: bold;
  color: black;
  left: 100%; /* Start just outside the right edge */
}

@keyframes marquee {
  from {
    transform: translateX(-100vw); /* Enters from far left */
  }
  to {
    transform: translateX(100vw); /* Exits far right */
  }
}

.imgbox{
    width: 280px;
    height: 140px;
    border: solid;
    margin: 10px;
    color: deeppink;
    display: flex;
     justify-content: center;  /* Horizontally center */
      align-items: center;      /* Vertically center */
      overflow: hidden;         /* Optional: hides overflow */
    cursor: url('cursors/pinkpointers/Pink%20Cursors%20-%20Link%20Select.cur'), auto;
}
.imgboxcontainer{
    margin-top: 10px;
    padding: 10px;
    border: solid;
   display: flex;
    justify-content: center;
    color: black;
}
.contentbox{
    width: 974px;
    height: 750px;
    margin-top: 20px;
    border: solid;
     padding: 10px;
    overflow: auto;
     color: deeppink;
}
.imgbox img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
 cursor: url('cursors/pinkpointers/Pink%20Cursors%20-%20Link%20Select.cur'), auto;
}
.blinkies{
    margin-top: 15px;
    display: flex;
    justify-content: center;
}</pre></body></html>