html {
  cursor: url(images/rainbow2.png), auto;
  margin: 0;
}

body {
  background: black url("images/backgrounds/stars.gif");
  color: white;
  font-family: 'Times New Roman', Times, serif;
  font-size: 18px;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  animation: fadein 1s;
}

img {
  /* This  makes sure images are not blurred. */
  image-rendering: -moz-crisp-edges;          /* Firefox                        */
  image-rendering: -o-crisp-edges;            /* Opera                          */
  image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
  image-rendering: pixelated;                 /* Chrome */
  -ms-interpolation-mode: nearest-neighbor;   /* IE8+                           */
}

a {
  cursor: url(images/rainbow2link.png), auto;
}

button {
  cursor: url(images/rainbow2link.png), auto;
}

@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

h2 {
  color: pink;
  font-family: 'Aladin', serif;
  font-size: 35px;
  margin: 10px 0px 10px 0px;
}

h1 {
  color: plum;
  font-family: 'Aladin', serif;
  font-size: 32px;
  margin: 10px 0px 10px 0px;
}

h3 {
  color: aquamarine;
  font-family: 'Aladin', cursive;
  font-size: 28px;
  margin: 10px 0px 10px 0px;
}

#moon_widget {
  display: block;
  margin-left: 34px;
  margin-bottom: -15px;
}

.marg1 {
  margin: 10px 0px 0px 0px;
}

.button_icon {
  max-height: 25px;
  padding-top: 5px;
} 

.stamp {
  position: relative;
  image-rendering: -moz-crisp-edges;          /* Firefox                        */
  image-rendering: -o-crisp-edges;            /* Opera                          */
  image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
  image-rendering: pixelated; /* Chrome */
  -ms-interpolation-mode: nearest-neighbor;   /* IE8+                           */

  position: relative;
  z-index: 0;
  margin: 1px 1px 0px 0px;
  filter: drop-shadow(0 0 0px rgba(0, 0, 0, 1));
  transition: .5s;
}

.stamp:hover {
  image-rendering: -moz-crisp-edges;          /* Firefox                        */
  image-rendering: -o-crisp-edges;            /* Opera                          */
  image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
  image-rendering: pixelated; /* Chrome */
  -ms-interpolation-mode: nearest-neighbor;   /* IE8+                           */

  position: relative;
  z-index: 1;
  transform: scale(2);
  background-color: transparent;
  filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 0.2));
  transition: .1s;
}

.textbox {
  background-color: rgba(255, 192, 203, 0.849);
  color: black;
  padding: 10px 10px 10px 10px;
  margin: 10px auto 10px auto;
  box-shadow: 0px 0px 30px pink;
  border-radius: 10px;
}

.tight_textbox {
  background-color: rgba(255, 192, 203, 0.849);
  color: black;
  padding: 15px 20px 15px 20px;
  margin: 0 auto;
  box-shadow: 0px 0px 30px pink;
  border-radius: 10px;
  display: flex;
  gap: 10px;
}

.aboutbutton {
  font-size: 24px;
  background-color: pink;
  font-family: 'Aladin', cursive;
}

.favs {
  position: relative;
  image-rendering: -moz-crisp-edges;          /* Firefox                        */
  image-rendering: -o-crisp-edges;            /* Opera                          */
  image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
  image-rendering: pixelated; /* Chrome */
  -ms-interpolation-mode: nearest-neighbor;   /* IE8+                           */

  position: relative;
  z-index: 0;
  margin: 1px 1px 0px 0px;
  filter: drop-shadow(0 0 0px rgba(0, 0, 0, 1));
  transition: .5s;
}

.favs:hover {
  image-rendering: -moz-crisp-edges;          /* Firefox                        */
  image-rendering: -o-crisp-edges;            /* Opera                          */
  image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
  image-rendering: pixelated; /* Chrome */
  -ms-interpolation-mode: nearest-neighbor;   /* IE8+                           */

  position: relative;
  z-index: 1;
  transform: scale(1.2);
  background-color: transparent;
  filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 0.2));
  transition: .1s;
}

.badge {
  position: relative;
  image-rendering: -moz-crisp-edges;          /* Firefox                        */
  image-rendering: -o-crisp-edges;            /* Opera                          */
  image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
  image-rendering: pixelated; /* Chrome */
  -ms-interpolation-mode: nearest-neighbor;   /* IE8+                           */

  position: relative;
  z-index: 0;
  margin: 1px 1px 0px 0px;
  filter: drop-shadow(0 0 0px rgba(0, 0, 0, 1));
  transition: .5s;
}

.badge:hover {
  image-rendering: -moz-crisp-edges;          /* Firefox                        */
  image-rendering: -o-crisp-edges;            /* Opera                          */
  image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
  image-rendering: pixelated; /* Chrome */
  -ms-interpolation-mode: nearest-neighbor;   /* IE8+                           */

  position: relative;
  z-index: 1;
  transform: scale(1.2);
  background-color: transparent;
  filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 0.2));
  transition: .1s;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: pink;
  color: black;
  cursor: url(images/rainbow2link.png), auto;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 3px;
  padding-top: 3px;
  border-radius: 10px;
  font-size: 35px;
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}

.userbutton {
  position: relative;
  image-rendering: -moz-crisp-edges;          /* Firefox                        */
  image-rendering: -o-crisp-edges;            /* Opera                          */
  image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
  image-rendering: pixelated; /* Chrome */
  -ms-interpolation-mode: nearest-neighbor;   /* IE8+                           */

  position: relative;
  z-index: 0;
  margin: 1px 1px 0px 0px;
  filter: drop-shadow(0 0 0px rgba(0, 0, 0, 1));
  transition: .5s;
  padding: 2px;
}

.userbutton:hover {
  image-rendering: -moz-crisp-edges;          /* Firefox                        */
  image-rendering: -o-crisp-edges;            /* Opera                          */
  image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
  image-rendering: pixelated; /* Chrome */
  -ms-interpolation-mode: nearest-neighbor;   /* IE8+                           */

  position: relative;
  z-index: 1;
  transform: scale(1.2);
  background-color: transparent;
  filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 0.2));
  transition: .1s;
}

.wallpaperbutton {
  margin-left: 10px;
  margin-right: 10px; 
  font-size: 0; 
  height: 40px; 
  width: 40px;
  padding-top: 15px;
  
}

.wallpaperbutton:hover {
  image-rendering: -moz-crisp-edges;          /* Firefox                        */
  image-rendering: -o-crisp-edges;            /* Opera                          */
  image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
  image-rendering: pixelated; /* Chrome */
  -ms-interpolation-mode: nearest-neighbor;   /* IE8+                           */

  position: relative;
  z-index: 1;
  transform: scale(1.2);
  background-color: transparent;
  filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 0.2));
  transition: .1s;
}

.wallpaperpicker {
  z-index: 2; 
  position: relative; 
  top: 370px;
  margin-top: -360px;
  display: flex; 
  flex-direction: column; 
  align-items: center;
  margin-left: 755px;

}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  max-width: 1000px;
}

.column {
  border: 2px solid rgba(0, 255, 200, 0.589);
  display: flex;
  flex-direction: column;
  padding: 10px;
}

hr {
  border: 1px dashed rgba(0, 255, 200, 0.589);
  width: 100%;
}

.marquee-container {
  height: 30px;
  overflow: hidden;
  line-height: 30px;

  .marquee {
    top: 0;
    left: 100%;
    width: 100%;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
  }

  .marquee2 {
    animation-delay: 15s;
  }
  b {
    padding-left: 10px;
  }
}

@keyframes marquee {
  0% {
    left: 100%;
  }
  100% {
    left: -100%
  }
}