/* mobile view */

body {
  background: url("/images/shadowbg.png")no-repeat fixed bottom left, linear-gradient(#44073e, #0e612a, #fac726) no-repeat fixed;
  font-family: Verdana;
  text-align: center;
}

.fishMarquee1 {
 display: none; 
}

.fishMarquee2 {
 display: none;  
}

a {
  color: white;
  font-weight: bold;
}

h1,p {
  color: white;
  font-family: Verdana;
  text-align: center; 
}

h1 {
 font-size: 18px; 
}

text {
  font-size: 10px bold;
  text-shadow: 1px 1px 2px black;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* img params etc. */

.thumbnail, #thumbnail {
height: 50px;
width: 50px;
background-color: white;
}

.nav {
padding: 0px 0px;
}

.header {
  padding: 20px;
  font-size: 18px; 
  cursor: url("/images/fireflycursorHover.png"), auto;
  text-decoration: none;
}

button {
  background-color: #44073e;
  width: 30%;
  max-height: 35px;
  padding: 5px 10px;
  border-color: #0e612a;
  border-width: 1px 1px 5px 3px;
  border-radius: 25px;
  color: white;
  text-align: center;
  font-size: 14px;
}

:onClick {
  border-width: 5px 3px 2px 2px;
}

.footer {
  max-height: 75px;
  width: 95%;
  background-color: none;
  position: fixed;
  bottom: 0px;
  right: 0px;
  color: white;
  font-size: 10px;
  text-align: right;
  padding-right: 5px;
}

/* updates box stuff */

.updatesBox {
  display: flex;
  flex-direction: column;
  width: 90%;
  padding: 25px;
  height: 400px;
}

.updatesHeaders {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  width: 100%;
  background: #44073e;
  color: white;
  font-size: 16px bold;
  align-content: center;
  text-align: center;
}

.newsBox {
  color: white;
  padding: 5px;
  text-align: left;
  width: 95%;
  overflow: scroll;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.6);
}

.newsBoxHeader {
  background: #44073e;
  width: 60%;
  color: white;
  text-align: center;
  padding: 5px;
  display: none;
}

.scheduleBox {
  color: white;
  padding: 5px;
  text-align: left;
  width: 95%;
  overflow: scroll;
  display: none;
}

.scheduleBoxHeader {
  background: #44073e;
  width: 40%;
  color: white;
  text-align: center;
  padding: 5px;
  display: none;
}

.newsCard {
  color: white;
  display: flex;
  flex-direction: row;
  width: 90%;
  padding: 5px;
  border: lime 2px double;
}

.newsCardPic {
  width: 40%;
  align-content: center;
}

.newsCardImg {
  width: 100%;
}

.newsCardText {
  width: 60%;
  padding: 5px;
  text-align: left;
  font-size: 12px;
}

/* end of updates box stuff */

/* art info box stuff */

.artInfoBox {
  width: 90%;
  height: 150px;
  padding: 5px;
  display: flex;
  flex-direction: row;
  border: 2px double goldenrod;
}

.artInfoBoxPic {
  width: 50%;
  display: flex;
  align-content: center;
}

.artInfoBoxImg {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.artInfoBoxText {
  width: 50%;
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-content: left;
  font-size: 12px;
  overflow: scroll;
}

.artInfoBoxTextCaption {
  font-size: 10px;
}

/* end of art info box stuff */

/* key chart stuff */ 

.keyChart {
  display: flex;
  flex-direction: row;
  align-content: center;
}

.keyChartPod {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.keyChartPic {
  width: 30px;
}

.keyChartImg {
  height: 25px;
  width: 25px;
}

.keyChartText {
  font-size: 8px;
  color: white;
}

/* gallery stuff */ 

.gallery {
  width: 300px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.galleryPagination {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
}

.galleryPagination > a {
  display: inline-flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  padding: 5px;
}

.tinyIcon {
  height: 25px;
  width: 25px;
  border-radius: 50%;
}

.galleryPagination > a:active {
  border-radius: 10%;
  border: 3px groove gold;
  padding: 5px;
}


.galleryPagination > a:focus {
  border-radius: 50%;
  border: 3px groove gold;
  padding: 5px;
}

.galleryPagination > a:hover {
  cursor: url("/images/fireflycursorHover.png"), auto;
  border-radius: 50%;
  border: 3px groove gold;
  padding: 2px;
}

.slides {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  
}

.slides::-webkit-scrollbar, .slides::-webkit-scrollbar-thumb, .slides::-webkit-scrollbar-track {
  display: none;
  background: transparent;
}

.slides > div {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  transform-origin: center center;
  transform: scale(0.95);
  transform: transform 0.5s;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slides > div:target {
  transform: scale(0.95);
 }
 
 .slideImg {
   width: 300px;
   height: 300px;
   object-fit: contain;
 }
 
/* end of gallery stuff */ 

.coolStuffContainer {
   display: flex;
   flex-direction: column;
 }
 
 .links {
   width: 95%;
 }
 
 .pets {
   width: 95%;
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
 }
 
 .petPod {
   font-size: 9px;
   color: white;
   width: 25%;
 }
 
 .petPod, #thumbnail{
   width: 90px;
   height: 90px;
   object-fit: contain;
 }

 /* end of mobile view */