body {
    background-color: black;
    width: auto;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

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

}

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

.bgTypeB {
    background-color: black;
    border-radius: 20px;
    margin: 30px;
    box-shadow: 5px 7px 8px;
}

.bgTypeC {
    background-color: black;
}

.bgTypeD {
    background: linear-gradient(to bottom right, navy 30% blue 60% black 100%);
}

hr {
    color: cyan;
    
}

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

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

sub {
    color: cyan;
    outline: black;
    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;
    text-wrap: wrap;
}

p {
    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: transparent;
    width: 25%;
    height: 25%;
    border-radius: 360px;
    border-style: solid;
    border-color: black;
    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: 2px;
        box-shadow: 5px 5px 5px black;
        transition: 0.3s;
    }
    img:hover {
        border-color: white;
    }
}

.donate:after {
    color: cyan;
    font-family: "sour-gummy", sans-serif;
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    text-shadow: 3px 3px 5px black;
    content: 'Hover For Address QR Code?';
}

.donate:hover:after {
    content: url(https://xfts.fyi/images/monero.png);
    box-shadow: 5px 5px 8px;
    border-radius: 30px;
    color: 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 {
        img {
            margin-top: 10px;
            margin-bottom: 0;
            color: cyan;
            background-color: cyan;
            box-shadow: none;
            transition: 0.3s;
        }
        img:hover {
            transform: scale(1.2);
        }
    }
}