body {
    background-color: black;
    width: 700px;
    margin-left: auto;
    margin-right: auto;
}

div {
    display: flex;
    justify-content: center;

}

.bgTypeA {
    background: linear-gradient(to bottom right, blue 30%, cornflowerblue 100%);
    border-radius: 20px;
    margin: 30px
}

.bgTypeB {
    background: linear-gradient(to bottom right, black, blue);
    border-radius: 20px;
    margin: 30px
}
.bgTypeC {
    background-color: black;
}

h1 {
    color: cyan;
    border: 20px cyan;
    font-family: "sour-gummy", sans-serif;
    font-weight: 800;
    display: flex;
    text-shadow: 3px 3px 5px black;
}

h2 {
    color: cyan;
    font-family: "sour-gummy", sans-serif;
    display: flex;
    justify-content: center;
    background-color: none;
    border-radius: 20px;
    text-shadow: 3px 3px 5px black;
}

pre {
    color: cyan;
    font-family: "sour-gummy", sans-serif;
    text-align: center;
    display: flex;
    text-shadow: 3px 3px 5px black;
}

.quote {
    filter: drop-shadow(3px 3px 5px black);
}

img {
    background-color: black;
    width: 25%;
    height: 25%;
    border-radius: 360px;
    border-style: solid;
    size-adjust: 50%;
    padding: 15px;
    margin: 10px;
    box-shadow: 3px 3px 10px;
}

.friends {
    img {
        image-rendering: pixelated;
        width: 88px;
        height: 31px;
        background-color: transparent;
        border-color: black;
        border-radius: 5px;
        padding: 0;
        margin: 20px;
        box-shadow: 5px 5px 5px black;
    }
}

.preFooter {
    background-color: transparent;
    padding: 40px;
    margin: 50px;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    .icons {
        i {
            margin-top: 10px;
            color: cyan;
        }
    }
}