:root{
    --dark: #3f3e3e;
    --aqua: #67f8f8; 
    --light: white; 
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px; 
    color: var(--aqua); 
    font-family:monospace; 
}

.hide {
    display:none; 
}

body{
    background-color: var(--dark);
    height: 100vh; 
}

.section {
    background-color: var(--dark); 
    padding: 10px; 
    margin-top: 20px; 
    width: 375px; 
    height: 90vh; 
    text-align: center; 
    border: 1px solid white; 
    border-radius: 10px; 
    box-shadow: 0px 0px 12px white;
    display:flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position:relative; 
}


/* Brain Breaks */
h1{
    font-size: 2.3em; 
    font-family: 'Major Mono Display', monospace;
    text-shadow: 0px 0px 12px var(--aqua);
    color: var(--aqua); 
}
/* -------------Welcome Page--------------- */
#welcome-alert{
    margin: 40px 0; 
}

.entername{
    font-family: monospace; 
    color: white;
    text-align: center;
}

.wrapper{
    background-color: var(--dark);
    z-index: -1;
}

.entername:focus {
    text-shadow: 0px 0px 8px white;
}

.btn {
    margin: 10px; 
    background-color: darkcyan;
    border: 2px white;
    border-radius: 10px;
}

.btn:hover {
    box-shadow: 0 0 30px var(--aqua);
    cursor: pointer;
}
/* --------------Set Timer Page----------------- */

#time_sel_cont>p{
    display:inline-block; 
    width: 160px; 
}

#focus-time, #calc_break_time {
    color: white; 
    text-shadow: 0px 0px 8px white;
}

#time_sel_cont_min {
text-align:left; 
}

#time_sel_cont_max {
text-align: right; 
}
output {
    display:block; 
    width: 100%;  
}

#set_time_btn{
    margin-top: 20px;

}

#time_select{
    width: 300px; 
}

#selected_time{
    margin-top:20px
}

output{
    margin-top: 20px;
    font-size: 1.5em;
}

#calc_break_time {
    font-size: 1.5em;
}

/* --------------Choose Category Page-------------- */

/* ---------------Timer Page--------------- */

#countdown svg{ 
    transform: translate(-50%, -50%);
    pointer-events: none;
}

#playBtn, #pauseBtn, #resumeBtn {
    font-size: 50px; 
    color: var(--aqua); 
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}

#playBtn:hover, #pauseBtn:hover, #resumeBtn:hover {
    cursor: pointer;
    text-shadow: 0px 0px 8px var(--aqua);
}

#plus_one{
    /* color: #fff; */
    font-size: 40px;
    border: 1px solid white; 
    color: white; 
    border-radius: 25px;
    padding: 5px;
    margin: 2rem 0;
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}
#plus_one:hover {
    cursor: pointer;
    box-shadow: 0px 0px 8px white;
    text-shadow: 0px 0px 8px white;
}
#time_display{
    text-shadow: 0px 0px 8px var(--aqua); 
    font-size: 3em;
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}

#player {
    visibility: hidden;
}
.music-controls {
    border: 1px solid white;
    box-shadow:0px 0px 8px white;  
    border-radius: 10px;
    width: 100px; 
    height: 50px; 
    display: flex; 
    align-items: center;
    justify-content: center;
    /* position: absolute;  
    top: 40px; 
    left: 40px; 
    z-index:1;  */
}

#vbg{
    display: none;
}

#play-video, #mute-video {
    font-size: 20px;
}
#play-video:hover, #mute-video:hover {
    cursor: pointer;
}

/* ---------------Break Page----------------- */

#break-page{
    background-color: var(--aqua); 
}
#break-page {
    background-color: var(--aqua);
}

#good-job{
    font-size: 20px;
    color: var(--dark);
    background-color: var(--aqua);

}
#break-img{
    width: 50%; 
    box-shadow: 2px 2px 5px black;
}

#break-button:hover, #confetti:hover {
    box-shadow: 2px 2px 5px var(--dark);
}
/* --------------Meme Page------------------- */

.meme_viewer{
    height: 812px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--dark);
}

.swiper-slide{
    color: black;
    text-align: center;
    background-color: #242424;
    display: flex;
    align-items: center;
    background-color: #7ed6df;
    background-image:linear-gradient(315deg,  #e962f594 0%, #67f8f8a9 75%);

}
.swiper-container {
    width: 375px;
    height: 812px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

img{
    width: 100%;
}

video{
    width: 100%;
}

.swiper-wrapper{

}

#test_1{
      background-color: pink;
}

#test_2{
    background-color: rgba(112, 197, 112, 0.753);   
}

#test_3{
    background-color: rgba(112, 180, 197, 0.753); 
}

@media screen and (min-width: 768px) {
    h1 {
        font-size: 3em;
    }
    .section {
        width: 700px;
        padding: 30px;  
    }
    
    .wrapper{
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       height: 100vh;
       margin: 10px;
       background-color: rgba(0, 0, 0, 0);
    }

    #time_sel_cont>p{ 
        width: 240px; 
    }
    #time_select {
        width: 480px; 
    }
    .swiper-container {
        width: 100%;
    }
    img{
        height: 90%;
        margin: 80px 700px;
    }

    #vbg{
        display: block;
        position: fixed;
        right: 0;
        bottom: 0;
        min-width: 100%;
        min-height: 100%;
        z-index: -1;
    }

    video{
        /* margin: 0 800px */
        width: 50%;
    } 

    #countdown{
        width: 700px;
        background-color: rgba(0, 0, 0, 0.747);
    }

    .swiper-slide{
        justify-content: center;
        align-items: center;
    }
    
}

@media screen and (max-height: 430px) {
    .section{
        border: 0; 
        border-radius: 0; 
        box-shadow: 0px 0px 0px white;
        height: 0; 
        padding: 0; 
        margin-top: 20px; 
        width: 375px; 
        display: block;
    }
    .wrapper{
        display: block;
    }
    
}

