:root {
  --border-shade: rgb(100, 0, 0);
  --border-highlight: rgb(253, 242, 242);
}

* {
  font-family: 'Comic Sans MS'
}

body {
  display: flex;
  justify-content: center;
}

.page {
  background: url("../assets/icons/pink_wallpaper.gif");
  padding-top: 1rem;
  padding-bottom: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
  min-width: 34rem;
  max-width: 40rem;
  border-style: solid;
  border-width: 3px;
  border-color: var(--border-highlight) var(--border-shade) var(--border-shade) var(--border-highlight);
  border-radius: 3px;
}

.folder {
  list-style-image: url("../assets/icons/folder_closed.png");
}

.folder:hover {
  list-style-image: url("../assets/icons/folder_open.png");
}

.ul {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

.folder a {
  text-decoration: none;
  font-size: 28px;
  color: rgb(252, 0, 168);
}

.folder a:visited {
  color: rgb(252, 0, 168);
}

.folder a:hover {
  text-decoration: underline;
}

.title h1 a {
  color: aqua;
  font-size: 50px;
  text-shadow: #ff0080 4px 4px, #ff0080 5px 5px;
  text-decoration: inherit;
}

.title p {
  margin: 0;
  position: relative;
}

.hidden-text,
.original-text {
  transition: opacity 0.3s ease;
}

.hidden-text {
  opacity: 0;
  position: absolute;
  left: 0;
}

.original-text {
  opacity: 1;
}

.title p:hover .hidden-text {
  opacity: 1;
}

.title p:hover .original-text {
  opacity: 0;
}

.animal-sanctuary {
  width: 44rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.animal-sanctuary img {
  margin: 0.4rem 0;
  max-width: 30rem;
  max-height: 30rem;
  border: 2px inset transparent;
  box-sizing: border-box;
  transition: all 100ms;
}

.animal-sanctuary img:hover {
  border-color:  aqua;
}

.blinkies img{
  margin: 2px;
  height: 30px;
  width: 200px;
}

.blinkies3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.blinkies3 img{
  margin: 2px;
  height: 30px;
  width: 200px;
}

body {
  background: url("../assets/icons/clouds2.png");
  background-repeat: repeat-x repeat-y;
}

.rainbow-text {
  margin-top: 0px;
  margin-bottom: 10px;
  font-family: sans-serif;
  font-size: 20px;
  background: linear-gradient(to right, #ef5350, #f48fb1, #7e57c2, #2196f3, #26c6da, #43a047, #eeff41, #f9a825, #ff5722);
  background-clip:text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}