@import url('https://fonts.googleapis.com/css2?family=Playwrite+FR+Moderne:wght@100..400&display=swap');

body, html {
    margin: 0;
    padding: 0;

    font-family: "Playwrite FR Moderne", cursive;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}

.navbar {
    background-color: blue;
}

.navbar-brand {
    color: white;
}

.container-background {
    height: 100vh;
    width: 100vw;

    background: url("/assets/images/splash.jpg");
    background-size: cover;
    background-position: center;

    overflow-y: scroll;
}

.container-background.muted {
    background-image: linear-gradient(to right, rgba(255,255,255, 0.7) 0 100%), url("/assets/images/splash.jpg");
}

.material-symbols-outlined {
    font-variation-settings:
            'FILL' 0,
            'wght' 400,
            'GRAD' 0,
            'opsz' 24
}

.player-bar {
    display: none
}

.player-elements {
    height: 48pt;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.player-button .material-symbols-outlined {
    font-size: 48pt;
}

.player-button.playing #player-button-play {
    display: none;
}
.player-button.playing #player-button-pause {
    display: block;
}

.player-button.paused #player-button-play {
    display: block;
}
.player-button.paused #player-button-pause {
    display: none;
}


.player-bar.visible {
    display: block;
}