@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");

:root {
  --primary: #3f85b7;
}

html,
body {
  display: flex;
  flex-direction: column;
}


body {
  margin: 0;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-color: #000000d0 !important;
  background-repeat: no-repeat;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#logo img,
.rat-img,
.rat-alt-img {
  max-height: 250px;
}

.audio-player {
  background: none;
  border-radius: 16px;
  padding: 20px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.816);
  backdrop-filter: blur(10px);
  gap: 15px;
  border: solid 1px var(--primary);
}

.container-fluid {
  flex: 1
}

.controls-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  width: 90%;
  visibility: hidden;
}

.play-btn span,
.volume-bar span {
  font-size: 28px;
}

.material-symbols-outlined {
  font-size: 36px;
  color: #ffffff;
  transition: transform 0.2s;
}

.fonts-loaded .controls-container {
  visibility: visible;
}

.material-symbols-outlined:hover {
  transform: scale(1.2);
  color: var(--primary);
  cursor: pointer;
}

canvas.visualizer {
  width: 100%;
  height: 80px;
  background-color: transparent;
  border-radius: 10px;
}

.volSlider {
  width: 120px;
  accent-color: var(--primary);
}

.full-height {
  height: 100vh;
}

footer {
  border-top: var(--primary) solid 1px;
  text-align: center;
  padding: 1rem;
  color: var(--primary);
  font-size: 0.9rem;
}

.controls-container {
  visibility: visible !important;
}

body {
  background-color: #000 !important;
  color: white;
}

#logo img {
  max-height: 120px;
  object-fit: contain;
}

.audio-player {
  max-width: 600px;
  margin: auto;
}