.main {
    width: 100%;
    padding-left: 0;
}
.content {
    width: 100%;
    max-width: 600px;
    height: 100vh;
    background: grey;
    margin: 0 auto;
    padding: 10px;
    display: grid;
    grid-template-areas:
    "btn1 notes"
    "btn2 notes"
    "btn3 notes"
    "btn4 notes";
    gap: 5px;
    grid-template-rows: 49px 49px 49px 49px;
    grid-template-columns: 100px 270px;
}
.content a:nth-of-type(1) {grid-area: btn1}
.content a:nth-of-type(2) {grid-area: btn2}
.content a:nth-of-type(3) {grid-area: btn3}
.content a:nth-of-type(4) {grid-area: btn4}
.content a {
    display: block;
    background: white;
    width: 100%;
    text-align: center;
    line-height: ;
    color: black;
    text-decoration: none;
    font-size: 16px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content .buttons {
    float: left;
    width: 100px;  
    /* display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;   */
}
.content .notes {
    grid-area: notes;
    display: block;
    background: white;
    width: 270px;
    height: calc(100% - px);
    margin-top: 15px;
    position: relative;
    float: left;
    margin-left: 5px;
}
.content .notes textarea {
    width: 100%;
    height: 100%;
    border: 0;
    resize: none;
    font-size: 12px;
}
.content .notes span {
    position: absolute;
    top: -15px;
    left: 0;
    background: white;
    padding: 0px 5px;
}