:root {
    --color1: #ffffff;
    --color2: #000000;
    --color3: #e4ebf4;
    --color4: #d4dbe4;
    --color5: rgb(255, 102, 0);
}

* {
    box-sizing: border-box;
}

@font-face {
    font-family: OregonFont;
    src: url("OregonBold.ttf");
}

@font-face {
font-family: VampireFont;
src: url("VampireFont.ttf");
}

html, body {
    height: 100%;
}

body {
    background-color: var(--color1, red);
    font-family: OregonFont;
    font-size: 18px;
    color: var(--color2, red);
}

div.navigation {
    font-size: 15px;
    background-color: var(--color2);
    float: left;
    width: 100%;
    padding: 15px;
    text-align: center;
    margin-bottom: 10px;
}

div.title {
    float: left;
    font-size: 25px;
    font-family: VampireFont;
    color: var(--color1);
}

div.links {
    float: right;
}

div.link {
    float: left;
    font-size: 25px;
    margin-left: 15px;
}

div.container {
    display: inline-block;
    text-align: center;
}

div.containerV2 {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: auto;
}

div.containerV3 {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: top;
    align-items: center;
    flex-direction: column;
    margin: auto;
}

div.containerV4 {
    width: 50%;
    display: flex;
    justify-content: top;
    align-items: center;
    flex-direction: column;
    margin: auto;
}

div.item {
    margin: 8px;
    /*border: 3px solid var(--color3);*/
    border-radius: 20px;
    margin-bottom: 10px;
    background-color: var(--color1, red);
    display: inline-block;
    width: calc(100% / 5.5);
    height: 55%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 4px 8px 0 rgba(0, 0, 0, 0.19);
}

@media only screen and (max-width: 768px) {
    div.item {
        display: block;
        width: 80%;
        margin: 20px auto 0;
    }
}

@media only screen and (max-width: 768px) {
    div.item {
        display: block;
        width: 80%;
        margin: 20px auto 0;
    }
}

div.item > img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 1px 4px 0 rgba(0, 0, 0, 0.19);
}

div.bubbles {
    align-content: center;
    height: calc(100%/3);
}

h1 {
    font-size: 20px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

h2 {
    font-size: 13px;
    font-style: italic;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    color: rgb(255, 102, 0);
}

h3 {
    font-size: 25px;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
    font-style: italic;
}

h4 {
    font-family: VampireFont;
    font-size: 70px;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
}

h5 {
    font-family: GothicFont;
    font-size: 70px;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
}

p {
    font-size: 15px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

p.V2 {
    font-size: 15px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    color: var(--color5);
}

hr {
    height: 3px;
    background-color: rgb(255, 102, 0);
    border: none;
    border-radius: 5px;
    width: 95%;
    margin-top: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgba(0, 0, 0, 0.19);
}

a {
    text-decoration: none;
    color: var(--color1);
}

a:hover {
    color: var(--color5);
}

div.blackbox {
    background-color: var(--color2);
    border: 5px solid black;
    margin-top: 20px;
    width: fit-content;
    text-align: center;
}

footer {
    font-size: 15px;
    font-family: OregonFont;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
    bottom: 0;
    color: var(--color5);
}

input#username {
    font-family: OregonFont;
    font-size: 15px;
    background-color: var(--color1);
    border: 2px solid var(--color4);
    border-radius: 3px;
    margin: 3px;
}

input#password {
    font-family: OregonFont;
    font-size: 15px;
    background-color: var(--color1);
    border: 2px solid var(--color4);
    border-radius: 3px;
    margin: 3px;
}

div.column {
    padding: 5px;
    margin: 5px;
    border: 2px solid var(--color4);
    border-radius: 3px;
    margin-bottom: 10px;
    background-color: var(--color1);
}

input[type=checkbox] {
    margin: 10px;
}

input#newButton {
    background-color: var(--color);
    color: var(--color2);
    margin: 5px;
    border: 2px solid var(--color4);
    border-radius: 3px;
    font-family: OregonFont;
    font-size: 12px;
    text-align: center;
}