@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500&display=swap');

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    color: white;
}

body {
    background-image: url('/gradient.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 0;
}

main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    align-items: center;
}

.time-container #time {
    font-size: 7rem;
    font-weight: 500;
    margin: 0;
}

.time-container #date {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
    margin-top: -10px;
}

.time-container #greeting {
    font-size: 1.3rem;
    font-weight: 400;
    margin: 6px 0 0;
    opacity: 0.95;
}

.links-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.links-container a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.links-container a:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

#play-music-btn,
#stop-music-btn {
    position: fixed;
    top: 20px;
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    background-color: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

#play-music-btn {
    right: 20px;
}

#stop-music-btn {
    right: 140px;
}

#play-music-btn:hover,
#stop-music-btn:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

#play-music-btn:active,
#stop-music-btn:active {
    transform: translateY(1px);
}

footer {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

footer p {
    margin: 0;
}

