/* 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;
}




/* My CSS */

body {
    background-color: rgb(141, 206, 250);
}

.comic-relief-regular {
  font-family: "Comic Relief", system-ui;
  font-weight: 400;
  font-style: normal;
}

.comic-relief-bold {
  font-family: "Comic Relief", system-ui;
  font-weight: 700;
  font-style: normal;
}

h1 { 
    font-size: 80px;
    text-align: center;
    margin-top: 20px;
    font-family: "Comic Relief", system-ui;
    color: rgb(53, 53, 213);
}

.navlinks {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
    font-family: "Comic Relief", system-ui;
    color: rgb(53, 53, 213);
}

a {
    color: rgb(102, 0, 255);
}

a:hover {
    color: rgb(94, 255, 207);
}

.Skeleton {
    display: block;
    margin: 20px auto;
    max-width: 40%;
    transition: transform .3s ease, box-shadow .3s ease;
	border-radius: 8px;
}

.Skeleton:hover {
	box-shadow: 0 20px 50px rgba(0,0,0,0.32);
	transform: translateY(-4px);
}

.ManedWolfFamily {
    display: block;
    margin: 20px auto;
    max-width: 40%;
    transition: transform .3s ease, box-shadow .3s ease;
	border-radius: 8px;
}

.ManedWolfFamily:hover {
	box-shadow: 0 20px 50px rgba(0,0,0,0.32);
	transform: translateY(-4px);
}

h2 {
    font-size: 28px;
    margin-top: 20px;
    font-family: "Comic Relief", system-ui;
    text-align: center;
    color: rgb(53, 53, 213);
}

p {
    font-size: 18px;
    margin-top: 10px;
    font-family: "Comic Relief", system-ui;
    text-align: center;
}

div {
    font-size: 18px;
    margin-top: 10px;
    font-family: "Comic Relief", system-ui;
    border-left: 4px solid #ccc;
    padding-left: 10px;
    color: rgb(99, 99, 228);
}

footer {
    font-size: 20px;
    margin-top: 40px;
    text-align: center;
    color: rgb(53, 53, 213);
    font-family: "Comic Relief", system-ui;
}