/* RESET CSS - THANK YOU 

http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* RESET CSS */

@font-face {
    font-family: Papernotes;
    src: url(assets/fonts/Papernotes.woff2);
}

body {
    background-image: url("assets/nyan-cat-poptart-cat.gif"), url("assets/nyan-cat-background-only.gif");
    background-position: center center;
    background-repeat: repeat;
}

#site {
    font-family: Papernotes;
    width: 70vw;
    height: fit-content;
    margin: 0 auto;
    background-color: rgba(28, 72, 139, 0.99);
    border-radius: 18px;
    border-color: hsl(216deg, 100%, 55%);
    border-width: 5px;
    border-style: dashed;
    padding: 10px;
    display: flex;
    justify-content: top;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

}

header>h1 {
    color: aliceblue;
    font-size: 2.5rem;
}

header>img {
    width: 5rem;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 30%;
    margin-top: 10px;
}

nav>a {
    color: beige;
    font-size: 0.9rem;
}

#welcome {
    color: aliceblue;
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

#welcome>img {
    width: 4rem;
}

main {
    display: flex;
    flex-direction: row;
}

#content>section {
    color: aliceblue;
}

#content>img {
    width: 10rem;
}

#aboutme {
    border-radius: 8px;
    border-color: aqua;
    border-width: 5px;
    border-style: dashed;
    background-color: hsl(216deg, 100%, 25%);

    padding: 8px;
    width: 28rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#aboutme>h3 {
    font-size: 2rem;
}

#aboutme>p {
    font-size: 1.4rem;
}

main>aside {
    border-radius: 8px;
    border-color: aqua;
    border-width: 5px;
    border-style: dashed;
    background-color: hsl(216deg, 100%, 25%);

    padding: 8px;
    width: 12rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

main>aside>p {
    color: aliceblue;
    font-size: 1.2rem;
}

#content {
    display: flex;
    flex-direction: column;
}

#cats>img {
    max-width: 128px;
}