
@import url('https://fonts.googleapis.com/css2?family=Poppins: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');


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

:root {
    --theme : white;
    --themetext : rgb(26, 83, 173);
}

body {
    overflow: hidden;
    font-family: Poppins, sans-serif;
}

nav {
    background: var(--theme);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;

}


nav #search {
    width: 400px;
    height: 30px;
    padding: 10px;
    font-size: larger;
}

main {
    display: flex;
    border: 2px solid;
    min-height: 100vh;
}

section {
    width: 100%;
    border: 2px solid black;
}
.tags {
    width: 30%;
    background: var(--theme);
}
.sidebar {
    width: 60%;
}

.container {
    /* width: 50%; */
    flex-grow: 1;

}

.tags h1 {
    padding: 20px;
}

.taglist {
    display: flex;
    overflow: auto;
    flex-direction: column;
    /* gap: 4px; */
    margin: 0 0 0 4px;
}


.tag {
    background-color: white;
    padding: 10px;
    font-size: larger;
    border: .4px solid;
    cursor: pointer;
}

.tag:hover {
    background: pink;
    backdrop-filter: blur(25px);
}

.notes {
    display: flex;
    flex-direction: column;
}

#note {
    padding: 40px 0 200px 10px ;
    height: 100vh;
    line-height: 40px;
    overflow: scroll;
    /* padding: 40px 0 200px 10px; */
}

#note ul, #note li{
    margin: 0 0 0 10px;
}

#note img {
    max-width: 100%;
}
.note {
    border: 1px solid;
    padding: 8px;
    cursor: pointer;
    /* border-radius: 20px ; */
    margin: 4px;
    transition: all .1s ease ;
    opacity: .9;
    background: rgb(255, 255, 255);
    
}

.note:hover {
    scale: 1.002;
    /* margin: 10px; */
    border: 1px solid palevioletred;
    opacity: 1.2;
}

.notetitle {
    /* font-weight: 800; */
    font-size: larger;
    color: var(--themetext);
    
}
    
.notetitlwe:hover {
        color: var(--theme);
        background: var(--themetext);
        text-align: center;
        width: 100%;
        /* display: inline; */
}

.notefoot {
    font-size: small;
    display: flex;
    justify-content: space-between;
}

.notetags {
    display: flex;
    flex-grow: 1;
    flex-direction: row;
    justify-content: flex-end;
    font-weight: bolder;
}

.notetags span {
    display: inline-block;
    background-color: rgba(139, 223, 238, 0.739);
    padding: 4px;
    border-radius: 20px;
    max-height: max-content;
    margin: 2px;
    border: 2px solid transparent;
}

.notetags span:hover {
    border: 2px solid;
}

.notetime {

}

.notetags {

}




/* Media Queries */


