:root {
    --text-size: ;
    --headline-size: ;
    --text-color: ;
    --background-color: ;
    --element-color-1: ;
    --element-color-2: ;
}

@font-face {
    font-family: 'Jokerman';
    src: url(./Jokerman-LET-Plain10.ttf);
}

* {
    box-sizing: border-box;
}

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;
    margin-block-end: 0;
    margin-block-start: 0;
}

ol,
ul {
    list-style: none;
}

html,
body {
    height: fit-content;
    width: 100%;
    overflow-x: hidden;
}

img {
    display: block;
}

h1 {
    text-align: center;
    color: red;
}

body {
    background-image: url('star.gif');
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
    box-shadow: inset 0 0 5px 2px #282a2d;
    padding: 1rem;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 3rem;
    background-color: lightblue;
    -webkit-text-stroke: 2px black;
}

.first {
    text-decoration: underline;
    display: block;
    text-align: center;
}

.jokerman {
    color: red;
}

.center {
    display: block;
    text-align: center;
    font-size: 6rem;
}

.initial {
    font-size: 8rem;
    color: red;
    font-family: 'Jokerman';
    line-height: 0.5;

}

.huge2 {
    font-size: 5rem;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.initial-font {
    color: red;
    font-family: 'Jokerman';
}

.fun {
    color: blue;
    font-weight: normal;
    color: red;
    font-family: 'Jokerman';
    font-size: 5rem;
    margin: 2rem 0;
    margin-bottom: -.3rem;
    line-height: 1;
}

p {
    margin: 2rem 0;
    line-height: 1.2;
}

.flex-container {
    display: flex;
    justify-content: left;
}

.svg-container {
    width: 50%;
}

.list {
    height: fit-content;
    width: 50%;
}

.cls-1 {
    fill: red;
}

svg {
    height: 100%;
    width: 100%;
    padding-right: 1rem;
}

.underline {
    text-decoration: underline;
}

.huge {
    font-size: 10rem;
    font-weight: bold;
    color: red;
    font-family: 'Jokerman';
    display: block;
}

.divider {
    width: 100%;
    height: 10px;
    background-color: black;
    margin: 2rem 0;
}

.slide {
    display: inline-block;
    width: 10%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: 5px solid black;
    margin: 0 1%;
}

.big {
    font-size: 4rem;
    font-weight: bold;
    display: block;
}

.transition {
    text-align: center;
    color: yellow;
}

@media only screen and (max-width: 600px) {

    html {
        font-size: 10px;
    }

    .slide {
    display: inline-block;
    width: 25%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: 5px solid black;
    margin: 0 1%;
}


}