@font-face {
    font-family: Neucha;
    src: url("fonts/neucha/Neucha-Regular.woff2");
}
@font-face {
    font-family: OpenSans;
    src: url("fonts/opensans/OpenSans-Regular.woff2");
}
body {
    background: linear-gradient(#eef, #cef);
    background-attachment: fixed;
    display: flex;
    flex-flow: row;
    margin: 0 auto;
    max-width: 90%;
}
body main {
    margin: 2em;
    padding: 3em;
    background: #aba8;
    border-radius: 3em;
    box-shadow: 0 1em 2em #bbb9;
    flex-grow: 3;
    opacity: 75%;
}
h1 {
    font-family: Neucha;
    font-size: 3em;
}
h2 {
    font-family: Neucha;
    font-size: 2em;
}
p {
    font-family: OpenSans;
}
body aside {
    display: flex;
    flex-direction: column;
    margin: 1em;
    padding: 2em;
    flex-grow: 1;
}
aside img {
    background: #ccf;
    border: 0.75em solid #9af;
    border-radius: 50%;
    max-width: 256px;
    box-shadow: 0 1em 1em #bbb9;
    align-self: center;
    margin: 1em;
}
aside a {
    text-decoration: none;

    animation: yrevoh 250ms;
    animation-fill-mode: forwards;
    border:none;
    
    width: 256px;
    background: #9af;
    font-family: Neucha;
    text-align: center;
    font-size: 1.5em;
    padding: 1em;
    margin: 0.25em auto;
    border-radius: 2em;
    box-shadow: 0 1em 1em #bbb9;
}
aside a:hover {
    animation: hovery 250ms;
    animation-fill-mode: forwards;
}
@keyframes hovery {
    from {
        opacity: 75%;
    }
    to {
        opacity: 100%;
    }
}
@keyframes yrevoh {
    from {
        opacity: 100%;
    }
    to {
        opacity: 75%;
    }
}
