body {
    background-color: grey;
    line-height: 35px;
}

h1 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 25px;
    color: white;
    text-align: center;
}

input {
    font-family: Georgia, 'Times New Roman', Times, serif;
    width: 96%;
    font-size: 14px;
    margin-bottom: 15px;
    transition-property: border-width;
}

button {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 14px;
    margin-right: 10px;
    border-radius: 7px;
    border-width: 1px;
    float: right;
    transition-property: background-color, border-width;
    transition-duration: 0.5s;
}

#add_field {
    height:auto;
    width: 50%;
    padding: 10px;
    padding-bottom: 20px;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 25%;
    border: 3px solid black;
    border-radius: 15px;
    position: relative;
    box-sizing: border-box;
    text-align: center;
    background-color: lightgrey;
    border-width: 1px;
    margin-bottom: 25px;
    transition-property: background-color, margin-left;
    transition-duration: 0.5s;
    }

#notes {
    display: none;
}

.notes {
    height:auto;
    width: 50%;
    padding: 10px;
    padding-bottom: 20px;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 25%;
    border: 3px solid black;
    border-radius: 15px;
    position: relative;
    box-sizing: border-box;
    text-align: center;
    background-color: rgba(0, 255, 110, 0.533);
    border-width: 1px;
    margin-bottom: 15px;
    transition-property: background-color, margin-left;
    transition-duration: 0.5s;
}

.notes:hover {
    margin-left: 26%;
    background-color: rgb(0, 255, 153);
}

#add_field:hover {
    margin-left: 26%;
    background-color: white;
}

.add_button {
    background-color: white;    
}

.edit_button {
    background-color: lightgrey;    
}

.delete_button {
    background-color: lightgrey;    
}

.save_button {
    background-color: lightgrey;    
}

button:hover {
    border-width: 1.5px;
}

.add_button:hover {
    background-color: lightgrey;    
}

.edit_button:hover {
    background-color: white;    
}

.delete_button:hover {
    background-color: white;    
}

.save_button:hover {
    background-color: white;    
}