html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
}

.sidenav {
  height: 100%;
  width: 80px;
  background-color: black;

  display: flex;
  flex-direction: column;
  align-items: center;

  transition: width 0.35s ease;
}

.sidenav:has(img:hover) {
  width: 120px;
}

.sidenav img {
  width: 80px;
  height: auto;
  transition: width 0.35s ease;
}

.sidenav img:hover {
  width: 130px;
}

.window {
  display: flex;

  height: 100vh;
  width: 100%;
}

.image-grid {
    display: flex;
    gap: 12px;
}

.image-grid img {
    width: 300px;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* Hover expansion */
.image-grid img:hover {
    transform: scale(1.5);
    z-index: 999;
}

#entries {
  font-family :'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

  padding-left : 15px;
  padding-right : 15px;
  
  width: 100%;
  overflow-y:auto;
}

#search {
  padding-left : 15px;
}

#animHeader {
    position: fixed;
    top: -7%;
    width: 100%;
    height: 10%;
    background: black;
    z-index: 1000;

    padding-top: 10px;
    gap: 67px;

    display: flex;
    flex-direction: column;

    justify-content: flex-start;
    align-items: center;

    transition: top 0.35s ease, gap 0.35s ease;
}

/* When hovered, slide down */
#animHeader:hover {
    gap: 0px;
    top: 0px;
}

#animContainer {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
}

.animItem {
    display: flex;
    align-items: center;
    gap: 8px;
    
    color:white;
}

#animGuide {
    font-size: 22;
    color:grey;

    transition: color 0.35s ease;
}

#animGuide:hover {
    font-size: 22;
    color:black;

}

/* Style the button that is used to open and close the collapsible content */
#collapsible {
  background-color: black;
  color: #444;

  cursor: pointer;
  padding-top: 4px;
  padding-bottom: 4px;
  width: 100%;

  text-align: center;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 12px;
  color: white;

  border: none;
  border-bottom: 2px solid rgb(10, 10, 10);
  border-radius: 0px 0px 25px 25px;
}

#onion {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 50;
}

.orbiter {
  position: absolute;
}