:root {
    margin: 3%;
    padding: 1%;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background-color: rgb(217, 229, 239);
}

main{
    margin: 50px;
    
}
textarea:hover {
    background-color: rgb(189, 189, 189);
}
button {
    border-top-right-radius: 15px;
    background-color: rgba(37, 137, 209, 0.394);
    font-size: large;
    font-weight: bold;
}

button:hover, #button10:hover {
    color: red;
    opacity: 5;
}
#button10 {
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 30px;
    border-radius: 10px;
    text-align: center;
    justify-content: center;
    background-color: yellow;
    font-size: medium;
}
/*past, present and future coloring created for color change depending on time of day*/
.past {
    background-color: rgb(223, 223, 223);
}
.present {
    background-color: rgb(255, 101, 101);;
}
.future {
    background-color: rgb(78, 207, 78);
}