.note-title{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 0;
    padding-bottom: 0;
}

.NoteLinks{
    display: block;
    list-style-type: none;
    margin-top: 20px;
}

.NoteLinks li{
    overflow-wrap: break-word;
    margin-bottom: 20px;
    margin-right: 5%;
}

.NoteLinks a{
    font-size: 1.75rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.NoteLinks a:hover{
    color: yellow;
    font-style: italic;
}

@media only screen and (min-width: 300px) {
    .note-title{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 540px) {
    .note-title{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 2rem;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}
  
@media only screen and (min-width: 768px) {
    .note-title{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 3rem;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 1024px) {
    .note-title{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 3.5rem;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

@media screen 
and (min-device-width: 1200px) 
and (max-device-width: 1600px) 
and (-webkit-min-device-pixel-ratio: 1) {
    .note-title{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 4rem;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}