* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: all .4s;
}
html {
    font-size: 62.5%;
}
body {
    width: 100vw;
    min-height: 100vh;
    display: grid;
    place-items: center;
    background-color: #ccdd36;
}
.mobile_body {
    width: 28rem;
    height: 55rem;
    background-color: #121212;
    border-radius: 2.5rem;
    position: relative;
}
.mobile_body::before {
    content: '';
    position: absolute;
    width: .4rem;
    height: 6rem;
    left: -.4rem;
    top: 18rem;
    border-top-left-radius: .4rem;
    border-bottom-left-radius: .4rem;
    background-color: #414141;
}
.mobile_body::after {
    content: '';
    position: absolute;
    width: .4rem;
    height: 2.5rem;
    right: -0.4rem;
    top: 15rem;
    background-color: #414141;
    border-top-right-radius: .4rem;
    border-bottom-right-radius: .4rem;
}
.mobile_screen {
    position: absolute;
    inset: 1.5rem .5rem;
    border-radius: 1.5rem;
    overflow: hidden;
}
.mobile_screen::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: -50%;
    top: 0;
    background-color: rgba(255, 255, 255, .03);
    transform: skewX(-10deg);
    z-index: 1;
}
.mobile_screen img{
    position: absolute;
    width: 100%;
    top: -2rem;
    z-index: 100;
}



/* Sart App CSS */
.app_div{
    position: relative;
    width: 100%;
    height: 100%;
    color: #fff;
    z-index: 10000;
    padding: .5rem;
    margin-top: 2rem;
    opacity: 0;
}
.app_div:hover {
    opacity: 1;
    
}
.app_div h1{
    text-align: center;
    margin: 2rem;
    font-size: 3rem;
    color: rgb(92, 204, 0);
}
.app_div h1 span{
    color: #fff;
    font-weight: 400;
}
.input_div{ text-align: center; }
.input_div input{
    padding: .4rem 1rem;
    border: 2px solid rgba(255, 255, 255, .02);
    outline: none;
    border-radius: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.input_div button{
    border-radius: 50%;
    background: rgb(92, 204, 0);
    border: none;
    color: #fff;
    margin-left: .3rem;
    font-weight: 600;
    font-size: 1.5rem;
    padding: .6rem 1rem;
}
.input_div button:hover{
cursor: pointer;
background: rgba(92, 204, 0, .8);
}

.all_notes{
    margin-top: 4rem;
}
.all_notes .note{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    margin-bottom: .5rem;
}
.all_notes .note p{
    font-size: 1.5rem;
    padding-left: .5rem;
}
.buttons button{
    background: transparent;
    border: none;
    cursor: pointer;
    margin: 0 .2rem;
    font-weight: 600;
    font-size: 1.1rem;
}
.buttons .edit_note{
    color: rgb(92, 204, 0);
}
.buttons .remove{
    color: #cc0022;
}