h1 {
    font-size: 9rem;
    margin: 3px;
}

pre {
    font-size: 2.7rem;
}

img {
    position: absolute;
    right: 27px;
    top: 27px;
}

a {
    background-color: black;
    color: hotpink;
    font-weight: bold;
    display: block;
    padding: 9px;
    text-align: center;
    text-decoration: none;
}

.blink {
    animation: blink-animation 3s infinite;
}

@keyframes blink-animation {
    from {
	color: hotpink;
    }
    9% {
	color: fuchsia;
    }
    18% {
	color: indigo;
    }
    27% {
	color: blue;
    }
    36% {
	color: green;
    }
    45% {
	color: lime;
    }
    54% {
	color: teal;
    }
    63% {
	color: aquamarine;
    }
    72% {
	color: orange;
    }
    81% {
	color: teal;
    }
    90% {
	color: magenta;
    }
}
