* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* SCROLLBAR  */
  ::-webkit-scrollbar {
    width: 8.5px;
  }
  ::-webkit-scrollbar-track {
    background: #929292;
  }
  ::-webkit-scrollbar-thumb {
    background: #535353;
    border-radius: 20px;
  }
  ::-webkit-scrollbar-thumb:hover{
    background: rgb(74, 74, 74);
  }

:root {
    --p_color: rgb(229, 229, 229);
    --nav_color: rgb(36, 36, 36);
    --nav_txt: rgb(191, 189, 189);
    --dark_bg: rgb(23,23,23);
}   
body {
    overflow-x: hidden;
    background-color: var(--dark_bg);
    font-size: 18px;
    color: rgb(197, 195, 195);
    font-family: 'Nunito Sans', sans-serif;
}
a {
    text-decoration: none;
    color: white;
}
#mobile-home-btn{
    transition: 0.2s all ease-in-out;
}
#mobile-home-btn:hover{
    filter: drop-shadow(0px 0px 10px gray);
}
#logo-home{
    transition: 0.2s all ease-in-out;
}
#logo-home:hover{
    filter: drop-shadow(0px 0px 10px gray);
}
#logo{
    color: white;
}


li {
    list-style: none;
}

.desktop a:hover{
    font-weight: 900;
}
.welcome{
    background-color: var(--nav_color);
    margin: 20px;
    padding: 20px;
    border-radius: 20px;
    word-wrap: break-word;
    text-align: center;
}
.welcome h2{
    margin-bottom: 20px;
}
.profile-img{
    display: inline-block;
    border-radius: 10px;
    margin: 10px;
    background-color: rgb(64, 64, 64);
    padding: 15px;
    
}
.profile-img h4{
    font-size: 0.7em;    
}
.profile-img a{
    transition: 0.15s all ease-in-out;
}
.profile-img a:hover{
    color: rgb(132, 179, 234);
}
.details{
    margin-bottom: 50px;
}
#edit-icon{
    width: 20px;
    height: 20px;
    filter: invert();
    margin-left: 0px;
    transition: 0.2s all ease-in-out;
}
#edit-icon:hover{
    box-shadow: 0px 0px 40px rgba(255, 0, 0, 0.605);
}

.username{
    display: flex;
    justify-content: center;
    align-items:start;
}

.welcome img{
    margin: 10px;    
    width: 80px;
   
}
.welcome h3{
    font-size: 0.8em;
    margin: 20px;
    margin-top: 10px;
}
.logoutbtn a{
    font-size: 0.8em;
    background-color: rgb(23,23,23);
    padding: 7px 10px;
    
    transition: 0.2s all ease-in-out;
    border-radius: 5px;
}
.logoutbtn{
    margin-bottom: 20px;
}
.welcome a:hover{
    filter: drop-shadow(0px 0px 20px rgba(255, 255, 255, 0.164));
}
.new-features-container{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-auto-rows: minmax(100px, auto);
    max-width: 100vw;
    grid-gap: 15px;
    margin: 20px;
    margin-bottom: 100px;
}
#new-fts{
    text-align: center;
    font-size: 2em;
    margin: 10px;
}
.new-features-container div{
    font-size: 0.7em;
    padding: 10px;
    text-align: center;
    word-wrap: break-word;
    display: flex;
    border-radius: 10px;
    color: var(--nav_txt);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.519);
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}
.new-features-container div:hover{
    filter: drop-shadow(0px 0px 10px rgba(98, 250, 250, 0.173));
}
.feature-1{
    grid-column: 1/3;
    grid-row: 1/3;
    background-color: var(--nav_color);
}
.feature-2{
    grid-column: 3/7;
    grid-row: 1/3;
    background-color: var(--nav_color);
}
.feature-3{
    grid-column: 1/5;
    background-color: var(--nav_color);
}
.feature-4{
    grid-column: 5/7;
    background-color: var(--nav_color);
}
.feature-5{
    grid-column: 1/7;
    background-color: var(--nav_color);
}

.change-password-container, .edit-profile-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* height: 100vh; */
    /* width: 100vw; */
    margin: 30px auto;
    border-radius: 20px;
    width: 70%;
    box-shadow: 0px 0px 10px 10px rgba(18, 18, 18, 0.464);
    display: none;
    /* background-color: var(--dark_bg); */
}
.change-password-container button, .edit-profile-container button{
    font-size: 0.8em;
    cursor: pointer;
    background-color: var(--nav_txt);
    margin: 10px 20px;
    margin-bottom: 20px;
    padding: 7px 10px;
    outline: none;
    border: none;
    transition: 0.2s all ease-in-out;
    border-radius: 5px;
}

.edit-profile-container label{
    margin-top: 20px;
}
.edit-profile-container button{
    margin-top: 20px;
}

.change-password-container button:hover, .edit-profile-container button:hover{
    
        background-color: rgb(166, 223, 245);
    
}

.change-password-container label, .edit-profile-container label{
    width: 100%;
    font-size: 14px;
}
.change-password-container input, .edit-profile-container input{
    padding: 5px 10px;
    text-align: center;
    background-color: var(--nav_txt);
    border: none;
    outline: none;
    border-radius: 20px;
}
.label-class{
    text-align: center;
    width: 40%;
    margin: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
/* MOBILE SPECIFIC */
@media screen and (max-width:800px) {
    .mobiles-top {
        width: 100%;
        background-color: var(--nav_color);
        color: white;
        display: inline-block;
        position:sticky;
        z-index: 99;
        top: 0;
        padding: 20px;
        border-radius: 15px;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.199);

    }

    .desktop {
        display: none;
    }

    .mobiles-top h2 {
        float: left;

    }
    .mobiles-bottom {
        justify-content: space-evenly;
        align-items: center;
        text-align: center;
        margin: auto;
        display: flex;
        position: fixed;
        flex-wrap: nowrap;
        bottom: 0px;
        width: 100%;
        flex-direction: row;
        border-radius: 15px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;

        box-shadow: 0px 0px 20px rgba(58, 58, 58, 0.249);
        background-color: var(--nav_color);
        border-top: 1px solid var(--dark_bg);
    }

    .mobiles-bottom li {
        width: 70px;
        text-align: center;
        /* margin: 0px 30px; */
        padding: 10px;
        display: inline-block;
    }

    .mobiles-bottom img {

        display: inline-block;
        filter: invert();
        opacity: 50%;
        width: 25px;
        

    }

    .mobiles-bottom h4 {
        /* color: var(--nav_txt); */
        font-size: 0.6em;
        /* align-items: center; */
        text-align: center;
    }

    #home-icon {
        float: left;
    }
/* 
    #reminder-icon {
        float: right;
    } */

    #delete-icon {
        float: none;
    }
    .mobiles-top img {
        width: 35px;
        float: right;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.582);
        border-radius: 100px;
    }

    .mobiles-bottom .active {
        filter: brightness(1);
        /* border-bottom: 1px solid black; */
    }
}

/* THINNER MOBILES  */
@media screen and (max-width: 320px) {
    .mobiles-bottom li {
        /* margin: 10px; */
        width: 23%;
        padding: 10px 20px;
        text-align: center;
        align-items: center;
        margin: 0;
    }
    .mobiles-bottom img {
        align-items: center;
        width: 22px;
    }

    .mobiles-bottom h4 {
        display: none;
        font-size: 0.4em;
    }

    .mobiles-top h2 {
        font-size: 1em;
    }

    .mobiles-top img {
        width: 25px;
    }
}

/* DESKTOP  */
@media screen and (min-width: 800px) {
    body {
        height: 100%;
    }

    .mobiles-top {
        display: none;
    }

    .mobiles-bottom {
        display: none;
    }
    .desktop {
        position: fixed;
        top: 0;
        width: 100%;
        
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.468);
        border-radius: 5px;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        background-color: var(--nav_color);
    }

    .desktop ul {
        display: flex;

    }
    .new-features-container{
        font-size: 1.5em;
    }
   
   
    .desktop li a {
        color: white;
        font-size: 0.9em;
    }
    #logo {
        margin: 0px 20px;
        font-size: 1.2em;
        align-items: center;
        align-self: center;
    }

    .desktop li {
        justify-content: flex-end;
        color: black;
        padding: 10px;
        margin: 10px;
    }
    .right {
        display: flex;
        position: fixed;
        right: 10px;
        height: 64px;
        align-items: center;
   }
    .left {
        display: flex;
        width: 100%;
        height: 64px;
    }
    .search-container img {
        width: 25px;
        align-self: center;
        align-items: center;
        float: right;
        margin: 0px 0px;
    }

    .search-container {
        display: none;
        /* margin: 0px 10px; */
        align-self: center;
        width: 25%;
        align-items: center;
        background-color: white;
        border-radius: 30px;


    }
    .popup-content {
        position: fixed;
        left: 10%;
        top: -20%;
    }

    .search-container input {
        padding: 0px;
        border: none;
        width: 80%;
        outline: none;
        padding-left: 10px;
        background-color: white;
        font-size: 0.9em;
        align-self: center;
        align-items: center;

    }
    .welcome{
        margin-top: 100px;
    }
    .welcome h2{
        font-size: 2em;
    }
    .welcome img{
        width: 100px;
    }
    .welcome h3{
        font-size: 1em;
    }
    .feature-1{
        grid-column: 2/3;
        grid-row: 1/3;
        background-color: var(--nav_color);
    }
    .feature-2{
        grid-column: 3/6;
        grid-row: 1/3;
        background-color: var(--nav_color);
    }
    .feature-3{
        grid-column: 2/5;
        background-color: var(--nav_color);
    }
    .feature-4{
        grid-column: 5/6;
        background-color: var(--nav_color);
    }
    .feature-5{
        grid-column: 2/6;
        background-color: var(--nav_color);
    }
    

}
 @media (prefers-color-scheme: light){
    .content{
        box-shadow: 0px 0px 10px rgba(128, 128, 128, 0.34);
    }
    body{
        background-color: var(--p_color);
        color: white;
    }
    .welcome{
        color: white;
    }
    .mobiles-bottom{
        background-color: var(--p_color);
        border: none;
    }
    .mobiles-bottom img{
        filter: invert();
    }
    .box{
        background-color: var(--p_color);
        color: white;
    }
    .mobiles-top h2{
        color: black;
    }
    .mobiles-top{
        background-color: var(--p_color);

    }
    .popup-content h3{
        
        color: white;
    }
    .popup-content{
        background-color: rgb(23, 23, 23);
    }
    .popup-content textarea{
        background-color: var(--nav_color);
        color: white;
    }
    .popup-content button{
        background-color: var(--nav_color);
        color: white;
    }
    .desktop{
        background-color: var(--p_color);
    }
    .desktop li a{
        color: black;

    }
    a{
        color: black;
    }
    .box img {
        filter: invert();
    }
    .box img:hover{
        filter: drop-shadow(0px 0px 10px white);
    }
    #logo{
        color:black;
    }
    .welcome{
        background-color: var(--p_color);
        color: rgb(54, 53, 53);
        box-shadow: 0px 0px 20px rgba(66, 66, 66, 0.447);
    }
    .profile-img{
        background-color: var(--p_color);
        box-shadow: 0px 0px 20px rgba(70, 70, 70, 0.442);
    }
    .logoutbtn a{
        background-color: rgb(186, 186, 186);
    }
    .logoutbtn a:hover{
        background-color: rgb(192, 222, 251);
    }
    #edit-icon{
        filter: invert(0);
    }
    #new-fts{
        color: var(--nav_color);
    }
    .feature-1{
        background-color: var(--p_color);
        
    }
    .feature-2{
        background-color: var(--p_color);
        
    }
    .feature-3{
        background-color: var(--p_color);
        
    }
    .feature-4{
        background-color: var(--p_color);
        
    }
    .mobiles-bottom li{
        color: black;
    }
    .mobiles-bottom img{
        filter: invert(0);
    }
    .feature-5{
        background-color: var(--p_color);
        
    }
    .new-features-container div{
        box-shadow: 0px 0px 10px rgba(63, 63, 63, 0.516);
        color: rgb(73, 73, 73);
    }
    .edit-profile-container, .change-password-container{
        box-shadow: 0px 0px 10px rgba(63, 63, 63, 0.516);
        background-color: var(--p_color);
    }
    .edit-profile-container input, .edit-profile-container button, .change-password-container button{
        background-color: var(--nav_txt);
    }
    .edit-profile-container button:hover .change-password-container button:hover{
        background-color: rgb(72, 174, 214);
    }
} 

