@import url('https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700;900&family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* 
font-family: 'Passion One', sans-serif;
font-family: 'Roboto Slab', serif; 
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* 
font-family: 'Roboto Condensed', sans-serif; 
*/

html {
    font-size: 140%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --black: #606060;
    --gray: #0000003a;
    --white: #fff;
    --hightlight: rgba(255, 115, 0, 0.8);
    --titleHighlight: rgba(255, 51, 0, 0.8);
    font-family: 'Roboto Slab', serif; 
}
*::-webkit-scrollbar {
    display: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body {
    background-color: var(--white);
}

.container {
    width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
}

.header {
    width: 100vw;
    padding: 0 3rem;
    padding-top: 1.5rem;
}
.header h1 {
    /* font-size: 2rem; */
    color: var(--titleHighlight);
}

.scene {
    width: 100vw;
    height: 100vh;
    flex: 0 auto;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 3rem;
    padding-top: 1.5rem;
    flex-shrink: 0;
    flex-grow: 0;
    scroll-snap-align: start;
}
.sceneContent {
    width: 90%;
}

.dialogList {
    list-style: none;
}

.dialogItem {
    list-style: none;
    margin-bottom: 1.8rem;
}

.dialogItem p {
    color: var(--white);
    width: 100%;
    font-size: 1.2rem;
}

.dialogItem p:first-child {
    font-family: 'Roboto Condensed', serif;
    font-weight: 500;
    color: var(--hightlight);
    margin-bottom: 0rem;
}

.dialogItem p:last-child {
    font-weight: 500;
    color: var(--black);
    line-height: 1.15;
}
.actionDescription {
    color: var(--gray) !important;
}

.paginationContainer{
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination {
    height: 50px;
    border-radius: 100px;
    column-gap: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.paginationButton{
    width: 50px;
    height: 50px;
    background: rgba(160, 160, 160, 0.2); 
    border-radius: 100px;
    backdrop-filter: blur(5px); 
    -webkit-backdrop-filter: blur(5px); 
    border: 1px solid rgba(255, 255, 255, 0.3); 
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.paginationButton:hover{
    background: rgba(160, 160, 160, 0.5); 
}
.activeButton{
    background: var(--black);
    color: var(--white);
}
