.tinos-regular {
  font-family: "Tinos", serif;
  font-weight: 400;
  font-style: normal;
}

.tinos-bold {
  font-family: "Tinos", serif;
  font-weight: 700;
  font-style: normal;
}

.tinos-regular-italic {
  font-family: "Tinos", serif;
  font-weight: 400;
  font-style: italic;
}

.tinos-bold-italic {
  font-family: "Tinos", serif;
  font-weight: 700;
  font-style: italic;
}
body{
    margin: 0;
}
.notes-list{
    width:20vw;
    min-height: 100vh;
    border: 2px solid rgb(248, 222, 107);
    margin-left: 0;
}
.current-note{
    width: 80vw;
    position: sticky;
    align-self: start;
    flex:1;
    top:1em;
    
}
.notes-list-name{
    border: 2px solid rgb(248, 222, 107);
    background-color: rgb(248, 222, 107);
}
.note-name{
    border: 2px solid rgb(248, 222, 107);
    
}  
.add-new-note{
    background-color: #f8de6b;
    border-radius: 50%;
    position: fixed;
    bottom: 5vh;
    left: 15vw;
    height: 65px;
    width: 65px;
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 55px;
    display: block;
    border: 2px solid rgb(209 189 60 / 69%);
}  
.add-new-note:active{
    height: 60px;
    width: 60px;
    padding-left: 7px;
}

.note{
    border: 1px solid rgb(0, 0, 0);
    background-color: rgb(245 218 92 / 79%);
    font-size: 30px;
    padding: 15px;
    color:black;
}
a{
    text-decoration: none;
}
.selected{
    background-color: rgb(209 189 60 / 69%);
}
textarea{
    resize:none;
    width: 79vw;
    min-height:100%;
    border: 2px solid #f8de6b59;
    font-size: 23px;
    
}
textarea:focus{
    outline: none;
    border: 3px solid #f8de6b;
}
.note-text{
    height: 85vh;
} 

form{
    height: 100%;
}
.scroll-wrapper{
    display: flex;
    align-items: flex-start;
    position: relative;
    height: fit-content;
}

.save-button{
    padding: 10px;
    background-color: rgb(248, 222, 107);
    border: 2px solid #f3d344;
    margin: 5px;
    font-family: 'Times New Roman';
    font-size: 16px;
}
.delete-button{
    padding: 10px;
    background-color: rgb(248, 222, 107);
    border: 2px solid #f3d344;
    margin: 5px;
    color: black;
}
.user{
    display: flex;
    justify-content: flex-end;
}
