body {
  background-color: rgb(255, 255, 255);
  margin: 0;
  height: 100%;
  font-size: large;
}

a:hover {
  cursor: pointer;
  color: #aa60bd;
}


.container {
  display: flex;
}

.navbar {
  outline: 0.01em solid black;
  background-color: white;
  height: 100vh;
  width: 10em;
  display: flex;
  flex-direction: column;
}

.navbar a {
  padding: 0.5em;
}

#tags {
  padding: 0.5em;
}

.content {
  margin: 1em;
  display: flex;
  flex-direction: column;
}

.card {
  background-color: white;
  padding: 1em;
  box-shadow: 0.5em 0.5em;
  outline: 0.01em solid black;
  float: left;
  margin-bottom: 1em;
}

#icon{
  height: 5em;
  padding: 1em;
  object-fit:scale-down;
  cursor:pointer;
}

#pageInfo.show{
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn{
  0%{
      opacity: 0;
  }
  100%{
      opacity: 1;
  }
}

#pageInfo.hide{
  display: none;
}

.contacts a{
  cursor: pointer;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

.art-card {
  width: 20em;
  object-fit: cover;
  cursor: pointer;
}

.gallery .art-card.show{
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn{
  0%{
      opacity: 0;
  }
  100%{
      opacity: 1;
  }
}

.gallery .art-card.hide{
  display: none;
}

#fullscreen {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: contain;
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-color: rgba(0, 0, 0, 0.5);
}

#fullscreen-art-description {
  margin-top: 0.5em;
  text-align: center;
}

#fullscreen-art-container img {
  height: 90vh;
}