body {
  color: #ffffff;
  font-size: 200%; 
  background-color: #5E17EB;
}

.file-input {
  display: inline-block;
  cursor: pointer;
}

.file-input[type="file"] {
  display: none;
}

.item img:not([src$=".jpg"]):not([src$=".jpeg"]):not([src$=".png"]):not([src$=".gif"]):not([src$=".bmp"]):not([src$=".webp"]) {
  display: none;
}

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

.upload-button {
  display: block;
  margin: 0 auto;
}

img { 
  max-width: 75%; 
  max-height: 75%; 
  width: auto; 
  height: auto; 
  object-fit: contain; 
}

.album-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  list-style-type: none;
}

.album-button {
  margin: 5px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
  width: 100%;
  max-width: 200px; /* Adjust this value as needed */
}

.album-button img {
  width: 100%;
  height: auto;
}

.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
