body{
    background: pink;
    margin: 0 10%;
    padding: 0px 10px;
    border: 3px solid #ffffff;
    border-radius: 30px;
}
h1{
    border: 3px solid #ffffff;
    color: #ffffff;
    border-radius: 30px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
ul{
    margin: 0% 28%;
}
p,li{
    padding: 0%;
    color: #817070;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  
}

#app{
    display: grid;
    grid-template-columns: repeat(auto-fill, 200px); /*if the screen is too small is going to drop to the next line*/
    padding:1%;
    gap:10px 0px;
}

.note{
    margin: 0% 2%;
    background: #f5f5cd;
    height: 200px;
    box-sizing: border-box; /*this will not allow the padding to increase the size of the sticky notes*/
    padding: 30px;
    border: none;
    border-radius: 20%;
    box-shadow: 0 0 7px rgba(0,0,0,0.15);
    resize: none; /*remove the resize option for the user*/

    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color:#322f55;
}

.add-note{
    margin: 0% 2%;
    background: rgba(255, 255, 255, 0.25);
    height: 200px;
    border: none;
    outline: none;
    border-radius: 20%;

    font-size: 130px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color:#b1afce;
    padding-bottom: 50px;

    cursor: pointer;
    transition: background 0.5s;
}

.add-note:hover{
    background: rgba(178, 171, 171, 0.25);

}

footer{
    position: relative;
    width:99%;
    border: 3px solid #ffffff;
    border-radius: 30px;
    text-align: center;
    margin: 3% 0%;
}


@media only screen and (max-width: 300px) {
    body{
        margin: 2% 2%;
        padding: 2px 10px;
    }
    ul{
        margin: 0% 1%;
    }

    #app{
        display: grid;
        grid-template-columns: repeat(auto-fill, 200px); /*if the screen is too small is going to drop to the next line*/
        padding:3%;
        gap:30px;
    }

    .note{
        height: 50px;
        width: 200px;
        box-sizing: border-box; /*this will not allow the padding to increase the size of the sticky notes*/
        padding: 15px;
        border-radius: 30px;
        resize: none; /*remove the resize option for the user*/
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 14px;
    }
    
    .add-note{
        height: 50px;
        width: 200px;
        border-radius: 30px;
        font-size: 30px;
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color:#b1afce;
        padding-bottom: 50px;
    
        cursor: pointer;
        transition: background 0.5s;
    }

    footer{
        margin: 3% 0%;
    }

}

@media only screen and (max-width: 440px) and (min-width:301px) {
    body{
        margin: 2% 2%;
        padding: 2px 10px;
    }
    ul{
        margin: 0% 3%;
    }

    #app{
        display: grid;
        grid-template-columns: repeat(auto-fill, 200px); /*if the screen is too small is going to drop to the next line*/
        padding:0%;
        gap:30px;
    }

    .note{
        height: 80px;
        width: 300px;
        box-sizing: border-box; /*this will not allow the padding to increase the size of the sticky notes*/
        padding: 15px;
        border-radius: 30px;
        resize: none; /*remove the resize option for the user*/
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 14px;
    }
    
    .add-note{ 
        height: 80px;
        border-radius: 30px;
        width: 300px;
        font-size: 50px;
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color:#b1afce;
        padding-bottom: 50px;
    
        cursor: pointer;
        transition: background 0.5s;
    }

    footer{
        margin: 5% 0%;
    }

}

@media only screen and (max-width: 850px) and (min-width:441px) {
    body{
        margin: 2% 2%;
        padding: 2px 10px;
    }
    ul{
        margin: 0% 3%;
    }

    #app{
        display: grid;
        grid-template-columns: repeat(auto-fill, 100px); /*if the screen is too small is going to drop to the next line*/
        padding:0%;
        gap:5px 5px;
    }

    .note{
        height: 100px;
        width: 100px;
        box-sizing: border-box; /*this will not allow the padding to increase the size of the sticky notes*/
        padding: 15px;
        border-radius: 30px;
        resize: none; /*remove the resize option for the user*/
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 14px;
    }
    
    .add-note{ 
        height: 100px;
        width: 100px;
        border-radius: 30px;
        font-size: 50px;
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color:#b1afce;
        padding-bottom: 50px;
    
        cursor: pointer;
        transition: background 0.5s;
    }

    footer{
        margin: 5% 0%;
    }

}

@media only screen and (max-width: 1000px) and (min-width:851px) {
    body{
        margin: 2% 2%;
        padding: 2px 10px;
    }
    ul{
        margin: 0% 3%;
    }

    #app{
        display: grid;
        grid-template-columns: repeat(auto-fill, 200px); /*if the screen is too small is going to drop to the next line*/
        padding:0%;
        gap:5px 5px;
    }

    .note{
        height: 200px;
        width: 200px;
        box-sizing: border-box; /*this will not allow the padding to increase the size of the sticky notes*/
        padding: 15px;
        border-radius: 30px;
        resize: none; /*remove the resize option for the user*/
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 14px;
    }
    
    .add-note{ 
        height: 200px;
        width: 200px;
        border-radius: 30px;
        font-size: 50px;
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color:#b1afce;
        padding-bottom: 50px;
    
        cursor: pointer;
        transition: background 0.5s;
    }

    footer{
        margin: 5% 0%;
    }

}