@keyframes transition {
    from {
        background-color: rgb(0, 61, 0);
    }
    to {
        background-color: rgb(0, 255, 0);
    }
}

@keyframes coloring {
	from {
		background-color: rgb(0, 255, 0);
        color: black;
	}
	to {
		background-color: rgb(0, 120, 0);
        color: white;
	}
}

body {
    animation-name: transition;
    animation-duration: 1s;
    background-color: rgb(0, 255, 0);
}

.blogdiv {
    color: white;
    background-color: rgb(0, 0, 0);
}

.navbardiv {
	animation-name: coloring;
	animation-duration: 1s;
	background-color: rgb(0, 120, 0);
}

nav a {
    animation-name: coloring;
    animation-duration: 1s;
    color: white;
}