.main-wrapper {
  height: 60vh;
  margin: 0;
  padding: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00000000;
}

.main {
  background-color: #494d64;
  padding: 15px;
  width: 80%;
  height: fit-content;
  margin: auto;
  border-radius: 20px;
  max-width: 1024px;
  overflow: hidden;
  box-shadow: 0 14px 50px #1e2030;
}

.scrolling-text {
  overflow: hidden;
  animation: scroll-left 14s linear infinite;
  white-space: nowrap;
  display: inline-block;
  margin: 4px;
}

@keyframes scroll-left {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-50%);
  }
}

.scrolling-text-container {
  background-image: linear-gradient(to right, #c6a0f6ff, #8aadf4ff, #30344600);
  color: #ffffff;
  width: 100%;
  overflow: hidden;
  margin-bottom: 2px;
}

.right {
  float: right;
  width: 50%;
  height: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
}

.left {
  float: left;
  width: 48%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}

/* use catppucchin macchiato palette https://catppuccin.com/palette*/
body {
  height: 100%;
  width: 100%;
  margin: 0%;
  padding: 0%;

  color: #cad3f5;
  font-family: "Comic Sans MS", Tahoma, sans-serif;
}

html {
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  background-color: #303446;
  overflow-x: hidden;
}

h1 {
  text-align: center;
  color: #ffffff;
  font-weight: bolder;
  font-size: 36px;
}

table,
th,
td {
  border: 1px solid;
}

img {
  border-radius: 10px;
  width: 100%;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  transition: transform 300ms;
  transform: scale(1.0);
}

.w88x31:hover {
  transform: scale(1.1);
}

a {
  color: #8aadf4;
  transition: all 140ms ease-in-out;
  display: inline-block;
}

a:visited {
  color: #f5bde6;
}

a:hover {
  color: #91d7e3;
  text-shadow: 0 0 5px #8aadf4;
  transform: scale(1, 1.2);
}

a:active {
  color: #ffffff;
}

button,
input,
textarea {
  font-family: "Comic Sans", Tahoma, sans-serif;
  color: #ffffff;
  background-color: #1e2030;
  transition: all 300ms;
  border: none;
  border-radius: 5px;
  padding: 5px;
  margin: 2px;
  resize: none;
}

button:hover {
  text-shadow: 0 0 5px #cad3f5;
  transform: scale(1.2, 1);
  box-shadow: 0 2px 10px #1e2030;
}

.rainbow {
  animation: rainbow 1s infinite alternate;
}

@keyframes rainbow {
  0% {
    color: #ed8796;
    text-shadow: 0 0 5px #f5bde6, 0 0 10px #ed8796, 0 0 32px #f0c6c6;
  }

  25% {
    color: #f5a97f;
    text-shadow: 0 0 5px #eed49f, 0 0 10px #f4dbd6,
  }

  50% {
    color: #eed49f;
  }

  75% {
    color: #a6da95
  }

  100% {
    color: #8aadf4;
  }
}

@keyframes jumpscare {
  0% {
    transform: scale(1, 1);
    opacity: 100%;
  }

  50% {
    transform: scale(7, 7);
    opacity: 100%;
  }

  99% {
    transform: scale(10, 10);
    opacity: 0%;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0%;
  }
}

@keyframes bgscroll {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -5000px 0;
  }
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: #cad3f5;
  text-shadow: 0 0 5px #1e2030, 0 0 15px #1e2030;
}

.w88x31 {
  max-width: 88px;
  max-height: 31px;
  border-radius: 0;
  width: 88px;
  height: 31px;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background-color: #00000000;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #5b6078;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #6e738d;
  transition: all 300ms ease-in-out;
}

/*
Rosewater
 #f4dbd6	 rgb(244, 219, 214)	 hsl(10deg, 58%, 90%)
Flamingo
 #f0c6c6	 rgb(240, 198, 198)	 hsl(0deg, 58%, 86%)
Pink
 #f5bde6	 rgb(245, 189, 230)	 hsl(316deg, 74%, 85%)
Mauve
 #c6a0f6	 rgb(198, 160, 246)	 hsl(267deg, 83%, 80%)
Red
 #ed8796	 rgb(237, 135, 150)	 hsl(351deg, 74%, 73%)
Maroon
 #ee99a0	 rgb(238, 153, 160)	 hsl(355deg, 71%, 77%)
Peach
 #f5a97f	 rgb(245, 169, 127)	 hsl(21deg, 86%, 73%)
Yellow
 #eed49f	 rgb(238, 212, 159)	 hsl(40deg, 70%, 78%)
Green
 #a6da95	 rgb(166, 218, 149)	 hsl(105deg, 48%, 72%)
Teal
 #8bd5ca	 rgb(139, 213, 202)	 hsl(171deg, 47%, 69%)
Sky
 #91d7e3	 rgb(145, 215, 227)	 hsl(189deg, 59%, 73%)
Sapphire
 #7dc4e4	 rgb(125, 196, 228)	 hsl(199deg, 66%, 69%)
Blue
 #8aadf4	 rgb(138, 173, 244)	 hsl(220deg, 83%, 75%)
Lavender
 #b7bdf8	 rgb(183, 189, 248)	 hsl(234deg, 82%, 85%)
Text
 #cad3f5	 rgb(202, 211, 245)	 hsl(227deg, 68%, 88%)
Subtext 1
 #b8c0e0	 rgb(184, 192, 224)	 hsl(228deg, 39%, 80%)
Subtext 0
 #a5adcb	 rgb(165, 173, 203)	 hsl(227deg, 27%, 72%)
Overlay 2
 #939ab7	 rgb(147, 154, 183)	 hsl(228deg, 20%, 65%)
Overlay 1
 #8087a2	 rgb(128, 135, 162)	 hsl(228deg, 15%, 57%)
Overlay 0
 #6e738d	 rgb(110, 115, 141)	 hsl(230deg, 12%, 49%)
Surface 2
 #5b6078	 rgb(91, 96, 120)	 hsl(230deg, 14%, 41%)
Surface 1
 #494d64	 rgb(73, 77, 100)	 hsl(231deg, 16%, 34%)
Surface 0
 #363a4f	 rgb(54, 58, 79)	 hsl(230deg, 19%, 26%)
Base
 #24273a	 rgb(36, 39, 58)	 hsl(232deg, 23%, 18%)
Mantle
 #1e2030	 rgb(30, 32, 48)	 hsl(233deg, 23%, 15%)
Crust
 #181926	 rgb(24, 25, 38)	 hsl(236deg, 23%, 12%)*/

/* (A) HIDE CHECKBOX */
.togCheck {
  display: none;
}

/* (B) HIDE CONTENT BY DEFAULT */
.togContent {
  transition: all 500ms;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  display: inline-block;
}

/* (C) SHOW CONTENT WHEN CHECKED */
.togCheck:checked+.togContent {
  max-height: 400px;
  opacity: 1;
  visibility: visible;
}

/* (X2) TOGGLE BUTTON */
.togButton {
  display: inline-block;
  width: 90%;
  padding: 10px;
  margin-top: 10px;
  background: #5b6078;
  border-radius: 10px;
  transition: all 300ms;
}

.togButton:hover {
  box-shadow: inset 0 0 25px #6e738d;
  color: #ffffff;
}

/* (X3) CONTENT */
.togContent {
  background: #363a4f;
  width: 90%;
  margin-left: 10px;
  margin-right: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.togContent p {
  padding: 10px;
  margin: 0;
}

.warning {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-color: #ff0000;
  color: #ffff00;
  visibility: hidden;
  font-size: 72px;
  text-align: center;
  text-shadow: 1px 0px #ffff00, 2px 0px #ffff00, 3px 0px #ffff00;
  letter-spacing: 4px;
}