@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap');

*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    /* list-style: none; */
    transition: all .2s linear;
    box-sizing: border-box;
    font-family: "Google Sans Flex", sans-serif;
}
:root{
    --accent:#DBC56B;
}


html{
    overflow-x: hidden;
}

html::-webkit-scrollbar{
    width:.5rem;
}
 html::-webkit-scrollbar-track{
    background-color: transparent;
}
 html::-webkit-scrollbar-thumb{
    background-color:#89c7c9;
    border-radius: 5rem;
}


body{
    overflow-x: hidden;
    background: #ecf5ff;
    cursor: default;
}
section{
    padding: 2rem 9%;
}

.thisDoc{
    overflow-y: auto;
}
.thisDoc.stop{
    overflow: hidden;
}



.timerCont{
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    row-gap: .2rem;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: .3rem;
    border: 1px solid #eee9d8;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 38, 70, 0.2);
    z-index: 100;
}
@media(max-width:1200px){
    .timerCont{
        display: none;
    }
}

.timerCont .timeCont,
.timerCont .dataCont{
    display: flex;
    gap: .5rem;
    padding: .3rem 1rem;
    background: #fff;
    border-radius:3rem;
    box-shadow: 0 5px 12px rgba(0,0,0, .1);
    border-top: 2px solid #f5f5f5;
    border-bottom: 2px solid #fff;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.timerCont .timeCont p,
.timerCont .dataCont p,
.timerCont .timeCont span,
.timerCont .dataCont span{
    font-size: .7rem;
    color:#999;
}
.timerCont .timeCont span,
.timerCont .dataCont span{
    animation: pulse 1s infinite;
}

@keyframes pulse{
    0%{
        opacity: 1;
    }
    50%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}





