body, html
{
    min-width: 900px;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial;
    background: url("bg-blurred.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}


::-webkit-scrollbar
{
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track
{
    opacity: 0;
}

::-webkit-scrollbar-thumb
{
    background: rgb(0, 170, 250);
}

::-webkit-scrollbar-thumb:hover
{
    background: rgb(0, 240, 230);
    transition: .5s;
}

.notes
{
    position: relative;
    width: 900px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.notes-title
{
    position: relative;
    top: 5%;
    width: 100%;
    font-size: 30px;
    color: rgb(255, 255, 255);
    border-bottom: 3px solid rgb(0, 170, 250);
}

.notes-content
{
    position: relative;
    top: 5%;
    width: 100%;
    height: 85%;
    font-size: 20px;
    color: rgb(255, 255, 255);
    overflow-y: scroll;
}

.notes-content li
{
    position: relative;
    margin: 20px 0;
}

.btn
{
    position: relative;
    display: block;
    float: right;
    right: 50px;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    background-color: rgb(0, 170, 250);
    color: rgb(255, 255, 255);
    padding: 10px 0;
    width: 230px;
    height: 20px;
}

.btn:hover
{
    background-color: rgb(0, 240, 230);
    color: rgb(25, 25, 25);
    transition: .5s;
}