:root {

    --color1: #ffffff;
    --color2: #000000;
    --color3: #e4ebf4;
    --color4: #d4dbe4;
}

* {
    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.container {
    display: inline-block;
    text-align: center;
}

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: 100%;
    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;
}

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

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);
}