/**

<div class=".note_block">
    <h1>once in a while check these:</h1>
    • BuiltIn: <a target="_blank" href="https://builtin.com/jobs">builtin.com/jobs</a><br>
    ⤑ pdf sign lease<br>
    (1) figure out the 1st step<br>
    ⤑ if TD bank falls below $100 they wi<br>
</div>

**/

.note_block {
    /* perimeter */
    border-radius: 7px;
    padding: 7px 11px 7px 11px;
    margin: 4px 4px 4px 4px;
    border: 0px solid #ffffff;

    /* arrangement */
    /* width: 100%; */ /* specifying width makes the padding and margin mess with the natural 100%-ness of a block */
    /* min-width: 100%; */ /* specifying width makes the padding and margin mess with the natural 100%-ness of a block */
    /* max-width: 100%; */ /* specifying width makes the padding and margin mess with the natural 100%-ness of a block */
    display: block;

    /* interior */
    background-color: #cdd7ed;  
    overflow: hidden;
    align: left;

    /* font */
    /* applying a default font to the row */
    /* have consciously chosen to apply it to row, not to body. */
    /* body, sub element 1, subsub element 1a, sub element 2 may want different fonts, */
    /* so thats how it will be structured */
    font-family: "soft_curve";
    font-size: 14px;
    letter-spacing: .3px;
    line-height: 20px;
    color: #446372;
    word-break: break-word;
    -webkit-text-stroke: 0.15px #4e595f;    }




.note_block > a {
    display: inline-block;
    line-break: anywhere;
    color: #749edd;
    -webkit-text-stroke: 0.2px #749edd;
    text-decoration: none;    }
.note_block > a:visited {
    /* font */
    color: #749edd;
    -webkit-text-stroke: 0.2px #749edd; 
    text-decoration: none;    }
.note_block > a:hover {
    /* font */
    color: #6184bb;
    -webkit-text-stroke: 0.2px #6184bb;    }






.note_block > h1 {
    /* perimeter */
    margin: 0px 0px 0px 0px;
    padding: 0px;
    /* arrangement */
    display: block; /* so that you dont need a breakline after every damn element */
    /* font */
    font-size: 14px;
    -webkit-text-stroke: 0.5px #294958;
    color: #294958;
    font-weight: normal;
    letter-spacing: .4px;    }




/** mobile overrides for everything above **/


/** width from zero to 1100 ****/
@media screen and (max-width: 1100px) { 

    .note_block > h1 {
        font-size: 20px;
        color: red;    }

}


/** width from 1101 to 1600 ******************************************************/
@media screen and (min-width: 1101px) and (max-width: 1600px) {  
}

/** width from 1601 to infinity ******************************************************/
@media screen and (min-width: 1601px) { 
}



