<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Baloo+Tammudu+2&amp;display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    overflow-x: hidden;
    /* background-color: rgb(141, 141, 141);  */
}
header{
    /* height: 570px; */
    width: 100vw;
    /* background-color: black; */
    position: relative;
}
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
    width: 100vw;
    background-color: black;
    padding: 0 20px;
    /* border-bottom: 1px solid white; */
}
.nav:hover{
    background-color: rgba(255, 255, 255, 0.219);
}
.mlogo img{
    width: 250px;
    margin-top: 7px;
}
.nav_items ul{
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.nav_items ul li{
    list-style: none;
}
.nav_items ul li a{
    text-decoration: none;
    color: white;
    padding: 10px;
    font-size: 25px;
    font-family: 'Baloo Tammudu 2', cursive;
    /* text-shadow: 3px 3px 5px blue; */
}
.nav_items ul li a:hover{
    color: #3498db;
    font-weight: bold;
}
.search{
    position: relative;
}
.search input{
    width: 250px;
    height: 30px;
    border: none;
    outline: none;
    padding-left: 10px;
    padding-top: 5px;
    border-radius: 2px;
    font-family: 'Baloo Tammudu 2', cursive;
    font-size: 17px;
    margin-right: 10px;
}
.search input:focus{
    box-shadow: 3px 3px 5px blue;
}
.slogo{
    position: absolute;
    right: 4%;
    top: 0%;
    height: 30px;
    width: 30px;
    border-radius: 3px;
}
.slogo:hover{
    background-color: rgba(0, 0, 0, 0.363);
    cursor: pointer;
}
.search img{
    position: absolute;
    right: 5%;
    top: 14%;
    width: 20px;
}
.search img:hover{
    cursor: pointer;
}
main{
    width: 70%;
    height: 100vh;
    margin: 0 auto;
    z-index: 2;
}
#info{
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
    text-align: center;
    align-items: center;
}
#info label{
    font-size: 40px;
    font-weight: 400;
    margin: 20px 0 -15px 0;
    font-family: 'Baloo Tammudu 2', cursive;
}
#unote{
    width: 600px;
    border: 1px solid rgba(2, 103, 255, 0.404);
    outline: 1px solid #3498db;
    padding-top: 10px;
    padding-left: 10px;
}
.btn{
    padding: 20px;
    border-radius: 20px;
    border: none;
    background-color: #3498db;
    color: white;
    cursor: pointer;
}
.btn:hover{
    background-color: #1e5379;
    border: 1px solid black;
}
#addNote{
    margin: 20px;
    /* position: absolute;
    top: 105%;
    right: 46%; */
}
#recent{
    font-size: 30px;
    font-family: 'Baloo Tammudu 2', cursive;
    margin: 20px 0;
    text-align: center;
}
.noteCard{
    border: 1px solid rgba(2, 103, 255, 0.404);
    width: 250px;
    min-height: 250px;
    border-radius: 10px;
    text-align: center;
    padding: 15px 5px;
    margin: 20px;
    margin-bottom: 60px;
    font-family: Arial, Helvetica, sans-serif;
}
.noteCard h3{
    margin-bottom: 10px;
}
.noteCard p{
    margin-top: 10px;
    min-height: 110px;
}
#notes_sec{
    min-height: 300px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
#del{
    padding: 10px;
    border-radius: 10px;
    border: none;
    background-color: #3498db;
    color: white;
    cursor: pointer;
    margin: 20px 0;
}
#del:hover{
    background-color: #1e5379;
    border: 1px solid black;
}
#clrNote{
    background-color: red;
}
#noRecent{
    font-size: 20px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.footer_div{
    height: 50px;
    width: 100%;
    background-color: #000000;
    background-image: linear-gradient(62deg, #000000 0%, #1f9ef3 100%);    
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Baloo Tammudu 2', cursive;
}
.footer_div h4{
    font-size: 20px;
    margin-top: 10px;
    color: white;
    
}</pre></body></html>