*,
*::before {
  cursor: url("/assets/images/White-Cat-Paw-PNG.png") 0 0, auto;
}
*::after {
  box-sizing: border-box;
}

:root {
  --the-pink: 255	192	203;
  --dark-pink: 204 144 155;
}

@keyframes pan {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}

body, html {
  color: aliceblue;
  /* height: 100%; */
  height: auto;
  padding: 0;
  font-family: Arial, sans-serif;
}

#background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(var(--dark-pink));
}

#panning-icons {
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/f/f0/Cat_silhouette_white.svg");
  background-size: 10%;
  animation: pan 60s linear infinite;
  will-change: background-position;
  height: 100%;
  width: 100%;
  opacity: 0.1;
  z-index: 0;
}


#content {
  padding-left: 5%;
  padding-right: 5%;
  position: relative;
  z-index: 2;
  margin-left: 17.5%;
  margin-right: 17.5%;
  min-height: 50%;
  height: max-content;
  color: white;
  background: linear-gradient(to right, rgba(255,255,255,0), rgb(var(--dark-pink)) 7.5%, rgb(var(--dark-pink)) 92.5%, rgba(255,255,255,0));
}

#tabs {
  z-index: 1000;
  position: sticky;
  top: 0;
  text-align: center;
  width: 65%;
  margin-left: 17.5%;
  margin-right: 17.5%;
  padding-bottom: 5px;
  background: linear-gradient(to right, rgba(255,255,255,0), rgb(var(--dark-pink)) 7.5%, rgb(var(--dark-pink)) 92.5%, rgba(255,255,255,0));
}

@media only screen and (min-width: 1200px) {
  #content {
    margin-left: 25%;
    margin-right: 25%;
  }

  #tabs {
    width: 50%;
    margin-left: 25%;
    margin-right: 25%;
  }
}

@media only screen and (max-width: 900px) {
  #content {
    margin-left: 2.5%;
    margin-right: 2.5%;
  }

  #tabs {
    width: 95%;
    margin-left: 2.5%;
    margin-right: 2.5%;
  }
}

a {
  text-decoration: none;
  color: aliceblue;
  text-shadow: 4px 4px 4px rgb(194, 241, 255);
}
a:hover {
  text-shadow: none;
  background-color: aliceblue;
  color: rgb(var(--the-pink));
}

centered {
  text-align: center;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

/* Style the tab */
.tab {
  overflow: hidden;
  /* border: 4px solid #ccc; */
  /* background-color: #ffffff; */
  display: flex; /* Add flexbox display */
  justify-content: center; /* Center items horizontally */
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: #ccc;
  border: none;
  outline: none;
  color: rgb(var(--dark-pink));
  cursor: url("/assets/images/White-Cat-Paw-PNG.png") 0 0, auto;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: aliceblue;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  /* border: 1px solid #ccc; */
  border-top: none;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

quote {
  font-size: 0.75em;
  white-space: pre;
}

code {
  font-size: 0.9em;
  background-color: #F0FFF0;
  color: #006400;
  padding-bottom: 0.2em;
  padding-left: 0.1em;
  padding-right: 0.1em;
}

.inline-gif {
  display: inline-block;
  vertical-align: middle; /* Adjust vertical alignment as needed */
}

.container {
  text-align: center;
  align-items: center;
  background-color: black;
  padding: 50%;
}

img {
  height: auto;
  max-width: 100%;
 }

.toc {
  background-color: rgba(255, 192, 203, 0.2);
  max-width: fit-content;
  padding-right: 3%;
  padding-top: 1%;
  padding-bottom: 1%;
  border-style: ridge;
  border-radius: 10%;
  border-color: rgba(255, 192, 203, 0);
}