/*@import url("01-reset.css");*/
/*@import url("02-base.css");*/
/*@import url("03-layout.css");*/

body {
    /*font-family: Verdana, Arial, Helvetica, sans-serif;*/
    /*font-size: 12px;*/
    /*line-height: 1.4em;*/
    background-color: #DAE0D2;
}

main {
    background-color: white;
}

h2 {
    font-size: 1rem;
    font-weight: bold;
}

@keyframes color-change {
    0% { background-color: #a4d7a4; }
    100% { background-color: transparent; }
}

.cursor-pointer {
    cursor: pointer;
}

.coloranim {
    animation: color-change .5s;
}