 body {
     margin: 0%;
     padding: 0%;
     overflow-x: hidden;
 }

 .navbar-container {
     background-color: #20232a;
     display: flex;
     justify-content: space-evenly;



 }
.noteslist{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    top: 50px;
  
  
 
}
@media(max-width:1300px){
    .noteslist{
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
}

.noteslist .note1{
    background-color:chocolate;
    height: 250px;
    width: 400px;
    border-radius: 10px;
    box-shadow: #20232a;
    
    
}
.noteslist .note1 .note-head{
    display: flex;
    justify-content: center;
    background-color: antiquewhite;
    box-shadow: 5px;
    height: 60px;
    border-radius: 5px;
    align-items: center;
    text-align: center;
}
.noteslist .note1 .node-content{
display: flex;
justify-content: center;
font-family: cursive;
}

 .navbar-container .navbar-logo {
     color: white;
     text-decoration: none;
     font-family: cursive;
     font-size: 40px;
     display: flex;
     justify-content: flex-start;

 }

 .navbar-container .navbar-logo a {
     text-decoration: none;
     color: #FFF4F4;


 }

 .navbar-container .navbar-logo :hover {
     color: #4F709C;
 }

 .navbar-list {
     display: flex;

     text-decoration: none;
 }

 .navbar-list .nav-ul {
     display: flex;
     justify-content: space-around;
     text-decoration: none;
     gap: 40px;
 }

 .navbar-list .nav-ul .nav-li {
     display: flex;
     justify-content: space-evenly;
     text-decoration: none;

 }

 .navbar-list .nav-ul .nav-li a {
     text-decoration: none;
     color: #FFF4F4;
     font-family: cursive;
     font-size: 25px;
     background-color: #4F709C;
 }
 .navbar-list .nav-ul .nav-li .login-btn{
    background-color: #4F709C;
    color: #f5f5f5;
    font-family: cursive;
    font-size: 25px; 
 }

 .navbar-list .nav-ul .nav-li :hover {
     background-color: #FFF4F4;
     color: #4F709C;

 }

 .banner {
     display: flex;
     justify-content: space-around;
     background-color: bisque;
     height: 630px;
     border-radius: 50px;
     align-items: center;
 }

 .banner .banner-content {
     display: flex;
     flex-direction: column;

     align-items: center;
     text-align: center;
 }

 .banner .banner-content h2 {
     color: #4F709C;
     font-size: 60px;
     font-family: cursive;
     text-align: center;
 }

 .banner .banner-content p {
     color: #20232a;
     font-size: 40px;
     text-align: center;
     font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
 }

 .banner .banner-content button {
     border-radius: 40px;
     height: 50px;
     width: 250px;
     color: #FFF4F4;
     background-color: #20232a;
     font-size: 30px;
     font-family: cursive;
 }

 .banner .banner-content button:hover {
     background-color: chocolate;
 }



 .banner .banner-img .banner-image {
     display: flex;

     height: 400px;
     width: 500px;


 }

 .banner .banner-image {
     cursor: pointer;
     transition: all 0.3s ease-out;
     border-radius: 30px;

 }

 @media(max-width:800px) {
     .banner .banner-img .banner-image {
         height: 90%;
         width: 370px;
         display: flex;
         justify-content: center;
         align-items: center;




     }

     .banner .banner-image {
         text-align: center;
         display: flex;
         justify-content: center;
         text-align: center;

     }

     .banner {
         display: flex;
         flex-direction: column;
         height: 100%;
     }
    
   

     
     
 }

 /* The Modal (background) */
 .modal {
     display: flex;
     position: fixed;
     z-index: 1;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.4);

     align-items: center;
     justify-content: center;
 }
 .modal-note {
    display: flex;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);

    align-items: center;
    justify-content: center;
}

 /* Modal Content */
 .modal-content {
     background-color: bisque;
     padding: 20px;
     border: 1px solid #888;
     width: 40%;
    
     border-radius: 20px;
     box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
     position: relative;
 }
 .modal-content-note {
    background-color: bisque;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
    height: 85%;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    position: relative;
}

 /* Close Button */
 .close {
     color: #aaa;
     font-size: 28px;
     font-weight: bold;
     position: absolute;
     top: 8px;
     right: 15px;
     cursor: pointer;
 }

 .close:hover,
 .close:focus {
     color: black;
     text-decoration: none;
 }

 .signup-form-container {
     max-width: 400px;
     margin: 0 auto;
     padding: 20px;
     border: 1px solid #ccc;
     border-radius: 5px;
     background-color: #f5f5f5;
 }

 .signup-form-container h2 {
     text-align: center;
     margin-bottom: 20px;
     color: #4F709C;
 }

 .signup-form-container form input {
     display: block;
     width: 100%;
     padding: 10px;
     margin-bottom: 15px;
     border: 1px solid #ccc;
     border-radius: 5px;
 }

 .signup-form-container form button {
     display: block;

     width: 100%;
     padding: 10px;
     background-color: #20232a;
     color: white;
     border: none;
     border-radius: 5px;
     cursor: pointer;
     font-size: 16px;
 }

 .signup-form-container form button:hover {
     background-color: chocolate;
 }
 .user{
    width: max-content;
 }
 .user h2{
    display: flex;
color: #4F709C;
font-family: cursive;
font-size: 40px;
position: relative;
left: 50px;
margin: 0%;
padding: 0%;
 }
 .notes{
    width: max-content;
 }
 .notes h4{
    display: flex;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 25px;
    color: #20232a;
    position: relative;
    left: 80px;
    margin: 0%;
padding: 0%;
 }

.addnew-btn{
    position: relative;
 
    color: white;
   
    text-align: center;
    line-height: 40px;
    cursor: pointer;
   
  
    /* Positioning adjustments */
    position: absolute;
    top: 170px; /* Adjust this value to control the distance from the top */
    right: 60px; /* Adjust this value to control the distance from the right */
    transform: translate(-50%, -50%); /* Center the button */
  }
  @media(max-width:700px){
    .plus-btn{
        position: relative;
        
        left: 50px;
    }
  }
  .plus-btn{

    height: 40px;
    width: 40px;
    background-color: chocolate;
   
  }
  
 .notes-content {
    display: flex;
    flex-direction: column;
   
    align-items: center;
    justify-content: space-evenly;
 }
  .notes-content textarea{
    width: 100%;
    height: 100%;
  }

  .notes-content .heading{
   height: 80px;
   width: 100%;
   color: #4F709C;
   font-family: cursive;
   font-size: 40px;
   font-style: italic;
  text-transform: capitalize;
  }
 .notes-content .contents{
    color: #4F709C;
  
    
  text-transform: capitalize;
  
 }
 .notes-content .notes-btn{
    display: flex;
    justify-content: center;
    align-items: center;
 }
 .notes-content .notes-button{
    background-color: chocolate;
    width: 90px;
    height: 40px;
    color: #f5f5f5;
    border-radius: 20px;
    font-family: cursive;
    text-align: center;
   
 }

  

  