* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: white;
  color: black;
  font-family: 'Libre Baskerville', serif;
}

.container {
  display: flex;
  height: 100vh;
}

.sidebar {
  width: 250px;
  height: 80vh;
  margin-top: 40px;
  margin-bottom: auto;
  padding: 20px;
  border-right: 1px solid black;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 30px;
  letter-spacing: 1.5px;
}


.logo img {
  width: 150px;
  height: auto;
}

nav h2 {
  font-size: 35px;
  margin-bottom: 10px;
}

.section {
  margin-top: 20px;
}

.section span {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.section ul {
  list-style: none;
  margin-left: 10px;
}

.section ul li {
  margin: 4px 0;
  cursor: pointer;
}

.section a {
  text-decoration: none;
  color: black;
}

.content {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.art-display p {
  font-size: 48px;
  font-style: italic;
}
#art-toggle {
  display: none;
}

.dropdown-label {
  font-weight: normal;
  cursor: pointer;
  user-select: none;
  display: block;
  padding: 5px 0;
}

.dropdown-menu {
  list-style: none;
  margin-left: 10px;
  padding-left: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.dropdown-menu li {
  padding: 5px 0;
}


#art-toggle:checked + .dropdown-label + .dropdown-menu {
  max-height: 300px; 
}
.art-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  opacity: 0;
  transition: opacity 1.5s ease-in;
}

.art-image.visible {
  opacity: 1;
}
@keyframes slow-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.logo img {
  animation: slow-rotate 40s linear infinite;
}