.logo-container {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.5);
  display: flex; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 100;
  transition: transform 0.3s ease;
}

/* Show the logo on phones */
@media (max-width: 1000px) {
  .logo-container {
    display: none; /* Show the logo only on phones */
  }
}

.logo {
  width: 100%;
  height: auto;
}
