Layout 28: Burrowing Owl
How to Draw 28 Birds in Harper’s Style
Borrowing Owl recreated in Affinity Designer on iPad, finished on Desktop. Ran into problems keeping mask during export from Affinity so had to take extra step to export in eps format, open in Illustrator and save as svg.
CSS Code
<style type="text/css">
body {
background: linear-gradient(#0091ff 50%, #00805c 50%) no-repeat;
font-family: "Noto Serif", serif;
display: grid;
grid-template-rows: 10vh 1fr 50px;
height: 100vh;
justify-items: center;
align-self: center;
}
article h1 {
color: white;
font-size: var(--font-size-xxx-large);
text-align: center;
}
.burrowing-owl {
width: auto;
height: 60vh;
transition: all .2s ease-in-out;
}
.burrowing-owl:hover {
transform: scale(1.1);
}
footer,
footer a {
color: white;
}
</style>