/* hai there if you're looking through the page source!!
i'm no expert, and this is real messy, so fair warning!! feel free to take :3 */

html {
  background-image: url(checkered.jpg);
  background-size: 500px 600px 0;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: #335c8d;
  padding: 0;
  margin: auto;
  display: grid;
  cursor: url(star%20cursor.png) 20 20, auto;
}

/* Container Styling */
.container {
	display: grid;
	grid-template-areas:
    ". header ."
    "menu content todo"
    ". footer .";
  grid-template-columns: auto auto auto;
  gap: 10px;
  padding: 40px;
  width: 100%;
  max-width: fit-content;
  margin: auto;
}

.container > div {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  animation-name: test;
    width: 100px;
      height: auto;
      border-radius: 100;
      position: relative;
      animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0% {transform: translateY(0);}
  50% {transform: translateY(-20px);}
  100% {transform: translateY(0);}
}

.container > div.header {
  grid-area: header;
  text-align: right;
  line-height: 11px;
  height: 40px;
  width: 135px;
  padding: 5px;
  background: #31B0FC;
  background: linear-gradient(180deg, rgba(49, 176, 252, 1) 0%, rgba(255, 248, 181, 1) 100%);
}

.container > div.content {
  grid-area: content;
  text-align: center;
  width: 400px;
  height: 275px;
  max-height: 275px;
  background: #31B0FC;
  background: linear-gradient(180deg, rgba(49, 176, 252, 1) 0%, rgba(255, 248, 181, 1) 100%);
}

.container > div.menu {
  grid-area: menu;
  height: 155px;
  width: 135px;
  overflow-y:auto;
  overflow-x: hidden;
  padding: 10px;
  background: #31B0FC;
  background: linear-gradient(180deg, rgba(49, 176, 252, 1) 0%, rgba(255, 248, 181, 1) 100%);
}

.container > div.todo {
  grid-area: todo;
  height: 155px;
  width: 135px;
  overflow-y:auto;
  overflow-x: hidden;
  padding: 10px;
  background: #31B0FC;
  background: linear-gradient(180deg, rgba(49, 176, 252, 1) 0%, rgba(255, 248, 181, 1) 100%);
}

.container > div.footer {
  grid-area: footer;
  width: 400px;
  max-width: 400px;
  height: 55px;
  max-height: 55px;
  overflow: hidden;
  white-space: nowrap;
  background: #31B0FC;
  background: linear-gradient(180deg, rgba(49, 176, 252, 1) 0%, rgba(255, 248, 181, 1) 100%);
}

.footcontent {
  grid-area: footer;
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  0% {transform: translateX(80vw);}
  100% {transform: translateX(-180vw);}
}

/* Text Styling */
li {
  list-style: circle;
  list-style-type: circle;
}

a {
  text-decoration: none;
  color: #335c8d;
  cursor: url(star%20cursor.png) 20 20, auto;
}

em {
  text-decoration: line-through;
}

.buttons {
  text-align: center;
  line-height: 8px;
  background-color: #ffffff;
  border-radius: 12px;
  width: 102px;
  height: 35px;
  border: 2px solid;
  border-color: #d3ecff;
  overflow: hidden;
  transform: translateX(12px);
}

.buttons:hover {
  box-shadow: 0 4px 5px;
  transition-duration: 0.2s;
}

iframe {
  border: solid;
  border-color: #d3ecff;
  height: 155px;
  max-height: 155px;
  overflow-y: scroll;
}

/* Scrollbar Styling copied from scripted.neocities.org */
        ::-webkit-scrollbar {
        width: 14px;
        }

        ::-webkit-scrollbar:horizontal {
        height: 14px;
        }

        ::-webkit-scrollbar-corner {
        background: #eee;
        }

        ::-webkit-scrollbar-track:vertical {
        background: linear-gradient(90deg, #e5e5e5, #f0f0f0 20%);
        border-radius: 5px;
        }

        ::-webkit-scrollbar-track:horizontal {
        background: linear-gradient(180deg, #e5e5e5, #f0f0f0 20%);
        border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb {
        border: 1.5px solid #888;
        border-radius: 5px;
        box-shadow: inset 0 -1px 1px #fff, inset 0 1px 1px #fff;
        }

        ::-webkit-scrollbar-thumb:vertical {
        background: linear-gradient(90deg, #eee 45%, #ddd 0, #bbb);
        }

        ::-webkit-scrollbar-thumb:horizontal {
        background: linear-gradient(180deg, #eee 45%, #ddd 0, #bbb);
        }

        ::-webkit-scrollbar-button:horizontal:end:increment,
        ::-webkit-scrollbar-button:horizontal:start:decrement,
        ::-webkit-scrollbar-button:vertical:end:increment,
        ::-webkit-scrollbar-button:vertical:start:decrement {
        display: block;
        }

        ::-webkit-scrollbar-button:vertical {
        height: 15px;
        }

        ::-webkit-scrollbar-button:vertical:start:decrement {
        background: white;
        background: url("https://dl.dropbox.com/s/n9ji42h9hdgdtpc/scroll3.png"), #eee;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100% auto, cover;
        border: 1.5px solid #888;
        border-radius: 5px;
        }

        ::-webkit-scrollbar-button:vertical:start:increment {
        display: none;
        }

        ::-webkit-scrollbar-button:vertical:end:decrement {
        display: none;
        }

        ::-webkit-scrollbar-button:vertical:end:increment {
        background: white;
        background: url("https://dl.dropbox.com/s/cdcco6pih7n1lae/scroll4.png"), #eee;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100% auto, cover;
        border: 1.5px solid #888;
        border-radius: 5px;
        }

        ::-webkit-scrollbar-button:horizontal {
        width: 14px
        }
        ::-webkit-scrollbar-button:horizontal:start:increment {
        display: none;
        }
        ::-webkit-scrollbar-button:horizontal:end:decrement {
        display: none;
        }

        ::-webkit-scrollbar-button:horizontal:start:decrement {
        background: white;
        background: url("https://dl.dropbox.com/s/xcm618ghd823271/scroll5.png"), linear-gradient(180deg, #e5e5e5, #f0f0f0 20%);
        background-repeat: no-repeat;
        background-size: 100% auto, cover;
        background-position: center;
        border-radius: 5px;
        border: 1.5px solid #888;
        }

        ::-webkit-scrollbar-button:horizontal:end:increment {
        background: white;
        background: url("https://dl.dropbox.com/s/byeyi7am889ii9m/scroll6.png"), linear-gradient(180deg, #e5e5e5, #f0f0f0 20%);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100% auto, cover;
        border-radius: 5px;
        border: 1.5px solid #888;
        }