@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap');

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

body{
    background-color: #f4f7f8;
    font-family: "Poppins", sans-serif;
    display: flex;
    flex-wrap: wrap;

}

/* heading part styling */
.heading{
    width: 100vw;
    height: 4.5rem;
    background-color: #f1c40f;
    color: #282936;
    box-shadow: 0px 10px 16px rgb(248, 247, 247);
}

.heading h1{
    line-height: 4.8rem;
    margin-left: 2rem;
    font-weight: 900;
    font-size: 1.8rem;
}

.add:active{
    transform: scale(0.98);
}

/* Add button styling */

.btn-div{
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: fixed;
    top: 7rem;
    right: 1rem;
    border: none;
    border-radius: 3px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    /* border: 1px solid black; */
    border-radius: 20px;
    background: #f1c12e;

}

button{
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    /* vertical-align: middle; */
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

button.learn-more{
    width: 7rem;
    height: auto;
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    
}

.btn-div:hover{
    background-color: #fff;
    filter: drop-shadow(0px 10px 8px rgb(219,218,218));
}

button.learn-more:hover{
    color: #f1c12e;
}

/* button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #f1c12e;
    border-radius: 1.625rem;
} */

/* button.learn-more .circle .icon{
    transition: all 0.45s cubic-bezier(0.65,0, 0.076, 1) ;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
} */

/* button.learn-more .circle .icon.arrow{
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625re,;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
} */

/* button.learn-more .circle .icon.arrow::before{
    position: absolute;
   content: "";
   top: -0.25rem;
   right: 0.0625rem;
   width: 0.625rem;
   height: 0.625rem;
   border-top: 0.125rem solid #fff;
   border-right: 0.125rem solid #fff;
   transform: rotate(45deg);
} */


button.learn-more .button-text{
    font-weight: 900;
}

button.learn-more .button-text:hover{
    color: #f1c12e;
}
/* text section where something wants to be added */
.note{
    width: 22rem;
    /* border: 1px solid black; */
    height: 10rem;
    background: white;
    overflow-y: scroll;
    position: relative;
    margin: 2rem;
    margin-top: 6rem;
    margin-right: 0.5rem;
    margin-bottom: 1rem;
   
}

.operation{
    position: absolute;
    right: 0px;
    padding: 3px;
}


.note textarea{
    outline: none;
    font-size: 1.2rem;
    border: none;
    height: 344px;
    width: 100%;
    padding: 13px;
    margin-top: 42px;
    /* border: 1px solid; */
    overflow: hidden;

}

.fa-edit,
.fa-trash-alt{
    color: #fff;
    background-color: #2ecc71;
    border-radius: 50%;
    padding: 10px;
}


.fa-trash-alt{
    background-color: #e74c3c;
}

.fa-edit:hover{
    background-color: #fff;
    color: #27ae60;
    filter: drop-shadow(0px 10px 8px rgb(219,218,218));
}

.fa-trash-alt:hover{
    background-color: #fff;
    color: #e74c3c;
    filter: drop-shadow(0px 10px 8px rgb(219, 218, 218));
}

.main{
    padding: 20px;
    font-weight: bolder;
    overflow-x: hidden;
    width: 20rem;
    /* border: 1px solid; */
    /* height: 344px; */
    margin-top: 42px;
}

.hidden{
    display: none;
}



/* query selector */

@media screen and (max-width: 1175px) {
    .note  {
        margin-top: 6rem;
        margin-right: -1.5rem;
        margin-left: 9rem;
    }
  }
  @media screen and (max-width: 1034px) {
    .note  {
        margin-right: -6.5rem;
    }
  }

  @media screen and (max-width: 958px) {
    .note  {
        margin-right: -2.5rem;
    margin-left: 6rem;
    }
  }

  @media screen and (max-width: 858px) {
    .note  {
        margin-left: 16rem
    }
  }

  @media screen and (max-width: 724px) {
    .note  {
        margin-left: 16rem
    }
  }