/*@font-face {*/
/*    font-family: 'Minecraft';*/
/*    src: url('font/minecraft.ttf') format('truetype');*/
/*}*/
html {
    background-color: #ffffff;
    background-image: url("../images/background.svg");
    background-attachment: fixed;
    background-size: cover;
}

header {
    text-align: center;
    font-family: Arial, serif;
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    text-shadow: 0 0 10px blue, -5px 5px 10px aqua, 0 0 10px blue;
    animation: title-animation 15s linear infinite;
}

@keyframes title-animation {
    0% {
        text-shadow: 0 0 10px blue, -5px 5px 10px aqua, 0 0 10px rebeccapurple;
        color: rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 10px rebeccapurple, -5px -5px 10px blue, 0 0 10px aqua;
        color: rgba(255, 255, 255, 1);
    }
    75% {
        text-shadow: 0 0 10px blue, 5px -5px 10px rebeccapurple, 0 0 10px blue;
        color: rgba(255, 255, 255, 1);
    }
    100% {
        text-shadow: 0 0 10px blue, -5px 5px 10px aqua, 0 0 10px rebeccapurple;
        color: rgba(255, 255, 255, 0.5);
    }
}

nav {
    text-align: center;
    font-family: Verdana, serif;
    box-sizing: border-box;
    background-color: #6e6e6e;
    padding: 10px;
    left: 0;
    width: 100%;
    color: white;
    border-radius: 15px;

    a {
        color: white;
        text-decoration: none;
    }

    a:hover {
        color: #4FE;
    }
}
main {
    .socials {
        img {
            height: 100px;
        }

    }
    .about-me {
        display: inline-block;
        padding: 15px;
        color: white;
        border: 16px solid transparent;
        background: url("../images/bio-background.png") no-repeat;
        background-size: 100% 100%;
        border-image: url("../images/bio-border.png") 16;
    }
line-height: 1.7;
    code {
        background-color: rgba(0, 51, 51, 0.55);
        border: 2px solid rgba(0, 217, 223, 0.75);
        border-radius: 5px;
        padding: 2px;
        color: rgb(207, 255, 239);
        font-family: Arial, serif;
    }
    .cubes {
        vertical-align: top;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        align-content: center;
        h3 {
            font-size: 20px;
            text-align: center;
        }
        ul {
            margin: 10px 10px 10px 10px;
            list-style: none;
            color: black;
            display: inline-block;
            border-radius: 10%;
            padding: 5px;
            background: rgba(255, 255, 255, 0.5);
            animation: MainShinyBox 15s ease-in-out infinite;

            .Liked {
                font-size: 20px;
                animation: MainShinyText 10s ease-in-out infinite;
                color: rgba(255, 255, 255, 0.5);

                img {
                    height: 25px;
                    content: url("../images/icons/heart.svg");
                }
            }

            .Okay {
                color: #444;
                font-size: 17px;

                img {
                    height: 17px;
                    content: url("../images/icons/thumbs-up.svg");
                }
            }

            .meh {
                color: #444;
                font-size: 17px;

                img {
                    content: url("../images/icons/meh.svg");
                    height: 17px;
                }
            }

            .NotPreferred {
                color: #888;
                font-size: 15px;

                img {
                    content: url("../images/icons/thumbs-down.svg");
                    height: 15px;
                }
            }
        }
    }

    font-family: Arial, serif;

    .MyName::after {
        content: "Loading";
        /*color: white;*/
        /*text-shadow: 1px 1px 1px gray;*/
        /*border: 12px solid transparent;*/
        /*background: url("../images/bio-background.png") no-repeat;*/
        /*border-image: url("../images/bio-border.png") 16;*/
        /*display: inline-block;*/
        /*padding: 12px;*/
        /*background-size: 100% 100%;*/
        animation: MyUsername 15s ease-in-out infinite;
    }
}

@keyframes MainShinyText {
    0% {
        text-shadow: 0 0 10px deeppink, -5px 5px 10px aqua, 0 0 10px rebeccapurple;
    }
    50% {
        text-shadow: 0 0 10px rebeccapurple, -5px -5px 10px deeppink, 0 0 10px aqua;
    }
    75% {
        text-shadow: 0 0 10px aqua, 5px -5px 10px rebeccapurple, 0 0 10px deeppink;
    }
    100% {
        text-shadow: 0 0 10px deeppink, -5px 5px 10px aqua, 0 0 10px rebeccapurple;
    }
}
@keyframes CodeShinyText {
    0% {
        text-shadow: 0 0 10px #0038ff, -5px 5px 10px aqua, 0 0 10px #32ffb8;
    }
    50% {
        text-shadow: 0 0 10px #32ffb8, -5px -5px 10px #0000ff, 0 0 10px aqua;
    }
    75% {
        text-shadow: 0 0 10px aqua, 5px -5px 10px #32ffb8, 0 0 10px #0000ff;
    }
    100% {
        text-shadow: 0 0 10px #0000ff, -5px 5px 10px aqua, 0 0 10px #32ffb8;
    }
}

@keyframes MainShinyBox {
    0% {
        box-shadow: 0 0 10px deeppink, -5px 5px 10px aqua, 0 0 10px rebeccapurple;
    }
    50% {
        box-shadow: 0 0 10px rebeccapurple, -5px -5px 10px deeppink, 0 0 10px aqua;
    }
    75% {
        box-shadow: 0 0 10px aqua, 5px -5px 10px rebeccapurple, 0 0 10px deeppink;
    }
    100% {
        box-shadow: 0 0 10px deeppink, -5px 5px 10px aqua, 0 0 10px rebeccapurple;
    }
}

@counter-style pronouns {
    system: cyclic;
    symbols: 💖 👍 👎 😂;
    suffix: " ";
}

@keyframes MyUsername {
    0% {
        content: "Loxding";
    }
    25% {
        content: "Loading";
    }
    50% {
        content: "LoadingYT";
    }
    75% {
        content: "Loxding.dev";
    }
    100% {
        content: "Lox";
    }

}
a .tooltip {
    display: inline-block;
    visibility: hidden;
    width: auto;
    background-color: rgba(0, 117, 117, 0.5);
    border: 2px solid rgba(0, 255, 255, 0.55);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 2px 5px;

    position: absolute;
    z-index: 1;
    margin-left: -100px;
    margin-top: 100px;
    opacity: 0;
    transform: translateY(0);
}
a:hover .tooltip {
    transform: translateY(-10px);
    opacity: 1;
    transition: opacity 0.3s, transform 0.3s;
    visibility: visible;
}

footer {
    font-size: 12px;

    a {
        color: white;
        text-decoration: none;
    }

    box-shadow: 0 0 15px blue, 0 0 15px aqua;
    font-family: Arial, serif;
    text-align: left;
    text-shadow: 1px 1px 1px gray;
    color: white;
    position: fixed;
    padding: 10px;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #007a5c;
}