html, body {
    margin: 0;
    font-family: 'Fragment Mono', monospace;
    /* overflow-x: hidden; */
}

button {
    font-family: 'Fragment Mono', monospace;
}


.logo {
    height: calc(1rem + 1vw);
    width: auto;
}


.container-gap {
    gap: 1rem;
}


.container-border {
    padding: 0.5rem 1rem;
    border: 3px solid black;
}


.no-margin {
    margin: 0;
}


.container-centered-row {
    display: flex;
    align-items: center;
    justify-content: center;
}


.container-centered-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.p-margin-top-bottom {
    margin-top: 1vh;
    margin-bottom: 1vh;
}


.color-grey {
    color: grey;
}


.text-align-center {
    text-align: center;
}


.width-inherit {
    width: inherit;
}


.container-space-between-row {
    display: flex;
    justify-content: space-between;
}


.container-align-end {
    display: flex;
    align-items: end;
}


.container-align-start {
    display: flex;
    align-items: start;
}


.bg-color-black {
    background-color: rgb(0, 0, 0);
}


.progress-bar-marker {
    height: 20px;
    width: 3px;
    background-color: grey;
}


.hidden {
    visibility: hidden;
}


.smoothed-transition {
    transition: all 0.7s ease-out;
}


#top-bar {
    position: absolute;
    width: 100%;
    padding: 3px;
    box-sizing: border-box;
    z-index: 2;
}


#main {
    position: relative;
    height: 90vh;
    width: 100%;
}


#prayer-name {
    font-size: 2rem;
    margin: 0 0 2rem 0;
}


#progress-bar-container {
    width: calc(70vw + 4rem);
}


#progress-bar {
    width: 70vw;
    height: 20px;
    position: relative;
    align-items: normal;
}


#progress-bar-marker-container {
    position: absolute;
    z-index: 2;
}


#bar {
    height: 5px;
    background-color: lightgrey;
}


#progress-container {
    position: absolute;
    display: flex;
    align-items: center;
}


#progress {
    height: 5px;
    width: 0%;
}


#progress-marker {
    width: 3px;
    height: 10px;
}


#progress-marker-label-container {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 0%;
    height: 32px;
}


#delta-time-container {
    min-width: 5rem;
}


#next-previous-button-container {
    position: absolute;
    top: 80%;
}


#next-previous-button {
    background-color: white;
    border: 0px;
    padding: 0.5rem;
    text-decoration: underline;
    user-select: none;
    font-size: 1rem;
}


#next-previous-button:hover {
    cursor: pointer;
}