* {
    font-family: custom;
}

a {
    text-decoration: none;
}

a:visited {
    color:#fff;
}

html {
	animation-name: bg;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	animation-direction: alternate;
	animation-duration: 2s;
}

.e {
	display: grid;
	place-items: center;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

@font-face {
    font-family: custom;
    src: url(../assets/fonts/devCss.ttf);
}

@keyframes bg {
    0%{background-color:blue;}
    100%{background-color: darkolivegreen;}
}
