/* 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;
    font-family: 'Courier New', Courier, monospace;
}

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;
}

/* End of Meyer Reset */




.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.video {
    width: 400px;
    height: 300px;
    margin: 20px;
}

@font-face {
    font-family: frog;
    src: url("r-u-a-frog.ttf");
}

* {
    font-family: frog;
}

body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'frog';
    font-size: xx-large;
    text-align: center;
}

@font-face {
    font-family: dwarf;
    src: url("world-summit.ttf");
}

* {
    font-family: dwarf;
}

.stuff {
    font-family: 'dwarf';
    font-size: x-large;
    text-align: center;
}

.fwog {
    color: #000;
    transition: all 1s;
}

.fwog:hover {
    transform: rotateY(360deg);
    color: #ffffff;
}


.fwog2 {
    align-self: flex-end;
    color: #000;
    transition: all 1s;
}

.fwog2:hover {
    transform: rotateX(360deg);
    color: #ffffff;
    background-color: orange;
    border: #FFFFFF solid 5px;
    border-radius: 10px;
}

.fwog3 {
    align-self: flex-end;
    font-size: 5px;
    color: #000;
    transition: all 1s;
}

.fwog3:hover {
    transform: rotateZ(360deg);
    color: #3c00ff;
    font-size: xx-small;
}

.fwogs {
    font-family: 'Times New Roman', Times, serif;
    color: #000;
    transition: all 1s;
}

.fwogs:hover {
    font-family: dwarf;
    font-size: xx-large;
    color: #ffffff;
}
audio {
    margin: 20px;
    background-color: black;
}