body {
  font-family: 'lato', sans-serif;
  background-color: #ffebe8;
  display: flex;
  flex-direction: column;
  height: 100vh;
  margin: 0;
}

img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

button {
  cursor: pointer;
}

h1 {
  font-family: 'Chewy', cursive;
  text-align: center;
}

h3 {
  text-align: center;
}

.gameContainer {
  display: flex;
  padding: 0.5em;
  gap: 1em;
  min-height: 0;
  justify-content: center;
}

.infoContainer {
  text-align: center;
}
/************************ LEFT PANEL ************************/
.leftHalf {
  background-color: #FDDDE6;
  border: 0em dotted #ccc;
  border-radius: 25px;
  overflow-y: auto;
  height: 100%;
  justify-content: right;
  max-width: 40vw;

}

/************************ RIGHT PANEL ************************/
.rightHalf {
  border-radius: 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: left;
  gap: 0.5em;
  width: fit-content;
}

/********** Bunny Display ************/
#bunnyContainer0 {
  display: flex;
  position: relative;
  height: 80%;
  max-width: 500px;
}

#bunnyContainer0 div {
  display: flex;
}

#bunnyContainer1 {
  position: relative;
}

#bgImg {
  position: absolute;
  top: 0;
  left: 0;
  width: fit-content;
  border-radius: 25px;
}

#bunnyImg {
  position: absolute;
  top: 0;
  left: 0;
  width: fit-content;
}

#outfitImg {
  position: absolute;
  top: 0;
  left: 0;
  width: fit-content;
}

#extraImg {
  position: absolute;
  top: 0;
  left: 0;
  width: fit-content;
}

canvas {
  visibility: hidden;
  display: none;
}

/********** UNDER BUNNY IMG SECTION ************/
#saveContainer { 
  background-color: #FDDDE6;
  border-radius: 25px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  max-width: 480px;
  width: 100%;
  align-self: center;
}

/* Logged In */
#loggedInDiv {
  display: none;
  visibility: hidden;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
}

#loggedInDiv div {
  background-color: white;
  border: 0.1em lavender solid;
  border-radius: 10px;
  padding: 10px;
  flex-direction: column;
  display: flex;
  padding-bottom: 1em;
  margin-bottom: 0.1em;
  flex: 1;
}

#loggedInDiv button {
  border: 0;
  background-color: white;
}

/* Logged Out */
#notLoggedInDiv {
  visibility: visible;
  display: flex;
  flex-direction: row;
}

/* Delete */
.deleteBunnyBttn:hover {
  color: pink;
}

.deleteBunnyBttn {
  align-self: flex-start;
  padding: 0.01em;
}

#deleteBunnyBttn0 {
  visibility: hidden;
}

#deleteBunnyBttn1 {
  visibility: hidden;
}

#deleteBunnyBttn2 {
  visibility: hidden;
}

/* Download */
#downloadBttn {
  font-size: 1em;
  width: 100%;
  background-color: white;
  border: 0.1em lavender solid;
  border-radius: 10px;
  padding: 0.5em;
}

#downloadBttn:hover {
  color: pink;
}

/************************ LEFT PANEL ************************/
/********** Grid Display Items ************/
.myGallery {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.myGallery img {
  width: 100%;
  overflow: hidden;
  border-radius: 25px;
}

.myGallery button {
  border: 0;
  border-radius: 25px;
}

/********** Tab Display Items ************/
ul.tab {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #FDDDE6;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  border-radius: 25px;
}

/* Float the list items side by side */
ul.tab li {
  float: left;
}

/* Style the links inside the list items */
ul.tab li a {
  display: inline-block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of links on hover */
ul.tab li a:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
ul.tab li a:focus,
.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}

@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}