@import url(/var.css);
@import url(/font.css);
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/


* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-transform: uppercase;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

html,
body {
    width: 100vw;
    height: 100vh;
    color: aliceblue;
    overflow: hidden;
}



video {
    position: absolute;
    width: 100vw;
    /* height: 100vh; */
    z-index: 0;
    top: 0;
    left: 0;
    /* display: none; */
}



.con {
    width: 100vw;
    height: 100vh;
    background: var(--background);
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
}

.main {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px;
    background:transparent;
    border-radius: 15px;
    -webkit-backdrop-filter: blur(32px);
            backdrop-filter: blur(32px);
            min-height:fit-content;
        

}

#title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
    font-size: 36px;
    text-transform: uppercase;
    font-family:
        'roboto';
    font-weight: 700;
    font-style: italic;
    padding: 0 5px;

}

#study {
    border-bottom: 5px solid var(--studyClr);
    padding: 0 5px;
    color: rgb(135, 239, 228);
    text-shadow: 0 0 15px var(--studyClr);
    cursor: pointer;


}

#brk {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--studyClr);
    color: transparent;
    padding: 0 5px;
    cursor: pointer;
}

#longbrk {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--studyClr);
    color: transparent;
    padding: 0 5px;
    cursor: pointer;
}


.timer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    font-family: motaFont;
    font-size: 78px;
    color: rgb(135, 239, 228);
    text-shadow: 0 0 15px var(--studyClr);
    overflow: hidden;
    padding: 0 8px;
    /*height:14rem;*/
}

.modify {
    font-size: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    font-family: 'roboto';
    font-weight: 600;
    font-size: 28px;
    color: #252934;
}

#add,
#sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: var(--studybtnClr);
    font-size: 50px;
    cursor: pointer;
    -webkit-box-shadow:
        #252934 1px 1px 20px 1px, #35ccbc -1px -1px 5px 2px;
            box-shadow:
        #252934 1px 1px 20px 1px, #35ccbc -1px -1px 5px 2px;



}

#addSome {
    background: var(--studybtnClr);
    border-radius: 50px;
    width: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    -webkit-box-shadow:
        #252934 1px 1px 20px 1px, #35ccbc -1px -1px 5px 2px;
            box-shadow:
        #252934 1px 1px 20px 1px, #35ccbc -1px -1px 5px 2px;
}




.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

video::-webkit-media-controls-picture-in-picture-button {
    display: none;
  }


