body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
}

.logo {
    max-width: 200px;
    display: block;
    margin: 0 auto 20px;
}

h1 {
    color: #333;
}

p {
    font-size: 18px;
    color: #666;
    line-height: 1.5;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.button {
    padding: 15px 30px;
    font-size: 18px;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #0056b3;
}

h2 {
    color: #666;
    font-weight: 400;
    margin-top: 10px;
    font-size: 20px;
}

.bottom-navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #333;
  display: flex;
  justify-content: space-evenly;  /* Evenly distribute space between buttons */
  align-items: center;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.bottom-navbar button {
  background-color: transparent; /* No background for the buttons */
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 24px; /* Adjust size of icons */
  transition: background-color 0.3s;
}

.bottom-navbar button:focus {
  outline: none;
}

.bottom-navbar button:hover {
  background-color: rgba(255, 255, 255, 0.1);  /* Slight hover effect */
}


@media (max-width: 768px) { /* or another breakpoint for mobile */
    .aplayer {
        height: 80px; /* Adjust as needed */
    }
}


@media (max-width: 768px) {
    .aplayer .aplayer-time .aplayer-time-inner {
        font-size: 16px; /* Adjust as needed */
    }

    .aplayer .aplayer-volume .aplayer-volume-value {
        font-size: 16px; /* Adjust as needed */
    }
}

