@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;500&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
}
html{
    font-size: 62.5%;
}

.heading{
    height: 10vh;
    background-color: rgb(254, 254, 58);
    
}
.heading .fa-solid{
    margin: 2rem 1.8rem;
}
.heading h2{
    font-family: 'Noto Sans', sans-serif;
    font-size: 3rem;
}

/* ------------Button section------------- */


.btn{
    float: right;
    margin-right: 1.5rem;
}
.button {
    border-radius: 30px;
    background-color: #f4511e;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 2.2rem;
    padding: 15px;
    width: auto;
    transition: all 0.5s;
    cursor: pointer;
    margin: 1rem;
    font-family: 'Noto Sans', sans-serif;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.7), 0 6px 20px 0 rgba(0, 0, 0, 0.25);
  }
  
  .button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
    font: 1rem;
  }
  
  .button span:after {
    content: '\000bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }
  
  .button:hover span {
    padding-right: 25px;
  }
  
  .button:hover span:after {
    opacity: 1;
    right: 0;
  }


  /* -----------Notes section ---------------*/


  .card{
    background-color: #fff;
    margin: 1rem;
    height: 15rem;
    width: 24rem; 
    overflow-y: scroll;
    margin-top: 3rem;
    box-shadow: inset 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.22);
  }
  .operations button{
    float: right;
    margin: 0.5rem;
    color: #FFFFFF;
    padding: 0.5rem;
    border-radius: 50px;
    width: 10%;
    transition: all ease-in;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.22);
  
  }

  .operations, .editbtn, .deletbtn{
   font-size: 1rem;
   border: none;
  }
  .operations .deletbtn{
   background-color: #f4511e;
  }
  .operations .editbtn{
   background-color: #07c192;
  }
  .operations .deletbtn:hover{
   background-color: #FFFFFF;
   color: black;
   transition-duration: 0.2s;
   
  }
  .operations .editbtn:hover{
    background-color: #FFFFFF;
    color: black;
    transition-duration: 0.3s;

  }
  .card textarea{
    outline: none;
    font-family: inherit;
    font-size: 1.5rem;
    border: none;
    height: 13rem;
    width: 97%;
    padding: 1.8rem;
    border-radius: 10px;
    font-weight: 600;
    background-color: #fff;
    margin: 0.5rem;
  }
  .card-container{
    display: flex;
    flex-wrap: wrap;
  }
  .hidden{
    display: none;
  }
  .main{
    font-family: inherit;
    height: 16rem;
    border-radius: 10px;
    font-weight: 600;
    margin: 2rem 0;
    padding: 1rem 2rem;
    font-size: 1.5rem;

  }
  


