body {
    background-color: rgb(36, 36, 36);
    color: whitesmoke;
    margin: 0;
    font-family: sans-serif;
    padding-top: 40px;
    width: 98%;
    max-width: 1920px;
}

nav {
    width: 100%;
    height: 30px;
    border-bottom: 2px solid rgb(255, 174, 255);
    padding: 10px;
    display: flex;
    align-items: center;
    background-color: rgb(36, 36, 36);
    position: fixed;
    z-index: 10;
    max-width: 1920px;
    top: 0;
}

nav a {
    margin-right: 25px;
    color: white;
    text-decoration: none;
}

.nav-logo-title a {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: purple;
    font-size: 170%;
    font-weight: bold;
    margin-left: 15px;
}

nav li {
    display: inline-block;
    /* float: inline-start; */
}

nav ul {
    position: absolute;
    right: 25px;
    color: white;
}

.nav-logo-title {
    width: 38%;
    display: flex;
    align-items: center;
}

.nav-logo-title img {
    content: url(https://drive.google.com/uc?export=view&id=18-tKlFNUNSF6k64aOtcup2O4Tj4ro6Ed);
    width: 30px;
}

#header {
    text-align: left;
    width: 102%;
    position: relative;
    padding: 1%;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 5%;
    display: flex;
    flex-direction: column-reverse;
    margin: 0;
}

/* #header::before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://drive.google.com/uc?export=view&id=1UVnMA2pu2mo4NT_MX2A7yJ7tzQ6IvSIB);
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
    border-radius: 0 0 30% 30%;
    z-index: -1;
} */

#header::after {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background-color: black;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
    border-radius: 0;
    /* border-radius: 0 0 30% 30%; */
}

.header-texts {
    margin-left: 5%;
    width: 60%;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.header-texts::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 70%;
    width: 18%;
    height: 50%;
    background-color: transparent;
    border: 5px solid #bb10ff;
    box-shadow: 0 0 10px #bb10ff, 0 0 20px #bb10ff, 0 0 30px #bb10ff, 0 0 40px #bb10ff;
    animation: spin 10s infinite;
    z-index: -1;
}


@keyframes spin {
    0% {
        transform: rotateY(0) rotateZ(-180deg);
    }

    25% {
        transform: rotateY(360deg);
    }

    50% {
        transform: rotateY(0) rotateZ(-180deg);
    }

    75% {
        transform: rotateY(360deg);
    }

    100% {
        transform: rotateY(0) rotateZ(-180deg);
    }
}

.header-texts h1 {
    color: rgb(255, 83, 255);
    font-size: 700%;
    --c: rgb(169, 0, 172);
    margin-bottom: 0;
    text-shadow:
        -1px -1px 0 var(--c),
        0 -1px 0 var(--c),
        1px -1px 0 var(--c),
        1px 0 0 var(--c),
        1px 1px 0 var(--c),
        0 1px 0 var(--c),
        -1px 1px 0 var(--c),
        -1px 0 0 var(--c);
}

.header-texts h3 {
    font-size: 300%;
    margin: 0;
    margin-bottom: 3%;
}

.header-texts p {
    color: rgb(255, 83, 255);
}

.header-filler {
    width: 100%;
    height: 50px;
    position: relative;
    background-color: rgb(36, 36, 36);
    display: flex;
    align-items: center;
    margin-top: 0;
    border-bottom: 1px solid rgb(255, 174, 255);
    z-index: 1;
}



.header-filler div {
    content: url(https://drive.google.com/uc?export=view&id=1r0LrqYsFphenY6oMBLFEC-cneEPeFw8a);
    width: 100%;
    position: relative;
    bottom: 8%;
    right: 0%;
    width: 50px;
    height: 50px;
    animation: move 8s linear infinite;
}

@keyframes move {
    0% {
        left: 105%;
    }

    100% {
        left: -10%;
    }
}

.header-filler div:hover {
    animation-play-state: paused;
}

.content div h2 {
    font-size: 250%;
}

.content-aside {
    width: 100%;
    position: relative;
    display: flex;
    margin-top: 30px;
}

.content-aside::after {
    content: ' ';
    display: block;
    position: absolute;
    right: 30%;
    bottom: 10%;
    width: 120%;
    height: 120%;
    opacity: 0.1;
    background-color: blueviolet;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
    border-radius: 50% 50% 50% 50%;
    z-index: -2;
}

.content-aside::before {
    content: ' ';
    display: block;
    position: absolute;
    left: 12%;
    top: 10%;
    width: 90%;
    height: 120%;
    opacity: 0.1;
    background-color: blueviolet;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
    border-radius: 50% 0 0 50%;
    z-index: -2;
}

.content {
    margin-left: 10%;
    width: 55%;
    border-right: 1px solid violet;
    padding-right: 3%;
}

.content-aside aside {
    margin-left: 5%;
    width: 15%;
    height: 25%;
    text-align: left;
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
    border: 10px inset purple;
    border-radius: 20%;
    z-index: 1;
}

.content-aside aside::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #2e2437;
    border-radius: 20%;
    opacity: 1;
    z-index: -1;
}

.content-aside aside::after {
    content: 'Resource and Other Works';
    visibility: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: rgb(36, 36, 36);
    border-radius: 20%;
    z-index: -1;
}

.content-aside aside h2 {
    text-align: center;
}

.content-aside aside a {
    text-decoration: none;
    color: white;
}

.content-aside aside ul {
    margin-left: 5%;
}

.articles {
    overflow-x: auto;
}

.articles table {
    border-spacing: 30px;
    width: 100%;
}

.article {
    width: 30%;
    --border-size: 3px;
    --border-angle: 0turn;
    text-align: center;
    background-image: conic-gradient(from var(--border-angle),
            rgb(36, 36, 36),
            rgb(36, 36, 36) 50%,
            rgb(36, 36, 36)),
        conic-gradient(from var(--border-angle), transparent 20%, rgb(255, 181, 245), rgb(247, 59, 216));
    background-size: calc(100% - (var(--border-size) * 2)) calc(100% - (var(--border-size) * 2)),
        cover;
    background-position: center center;
    background-repeat: no-repeat;
    animation: bg-spin 3s linear infinite;
    padding: 2%;
    padding-bottom: 10%;
    position: relative;
}

.row-second {
    display: flex;
    flex-direction: row-reverse;
    width: 300%;
    --border-size: 3px;
    --border-angle: 0turn;
    text-align: center;
    background-image: conic-gradient(from var(--border-angle),
            rgb(36, 36, 36),
            rgb(36, 36, 36) 50%,
            rgb(36, 36, 36)),
        conic-gradient(from var(--border-angle), transparent 20%, rgb(255, 181, 245), rgb(247, 59, 216));
    background-size: calc(100% - (var(--border-size) * 2)) calc(100% - (var(--border-size) * 2)),
        cover;
    background-position: center center;
    background-repeat: no-repeat;
    animation: bg-spin 3s linear infinite;
    padding: 2%;
    padding-bottom: 0;
    position: relative;
}

.article h3,
.article-long h3 {
    font-size: 200%;
}

.article-long {
    padding-bottom: 5%;
    width: 65%;
    padding-top: 5%;
}

.row-second td {
    text-align: center;
}

.row-second td:last-child {
    width: 25%;
    margin-right: 5%;
}

.row-second img[alt*="Article 4"] {
    content: url('https://media.tenor.com/mKTS5nbF1zcAAAAd/cute-anime-dancing.gif');
    max-width: 80%;
    max-height: 80%;
    border-radius: 50%;
    margin: 10%;
    border: 3px solid rgb(205, 108, 205);
    transition: transform 2s ease;
}

.row-second img[alt*="Article 4"]::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgb(205, 108, 205);
    z-index: -1;
}

.row-second img[alt*="Article 4"]:hover {
    transform: rotateY(-180deg);
}

@keyframes bg-spin {
    to {
        --border-angle: 1turn;
    }
}

.article:hover {
    animation-play-state: running;
}

@property --border-angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
}

.article img {
    width: 80%;
    height: 15%;
    border-radius: 50%;
    border: 3px solid rgb(205, 108, 205);
    position: relative;
    margin: 10%;
    margin-top: 2%;
    display: flex;
    justify-content: center;
}

.article h3 {
    height: 5%;
}

.article p {
    text-align: center;
    height: 50%;
}

.article a {
    display: inline-block;
    border: 1px solid rgb(205, 108, 205);
    border-radius: 100px;
    width: 80%;
    height: 30px;
    background-color: purple;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: absolute;
    bottom: 5%;
    left: 10%;
}

.article a:hover {
    color: purple;
    background-color: white;
}

.article img[alt*="Article 1"] {
    content: url('https://media.tenor.com/st08IUtpMBYAAAAd/dancing-pikachu.gif');
}

.article img[alt*="Article 2"] {
    content: url('https://wallpapers-clan.com/wp-content/uploads/2022/12/anime-eyes-gif-pfp-1.gif');
}

.article img[alt*="Article 3"] {
    content: url('https://media.tenor.com/whckVqKhLOYAAAAd/chipmunk-diving-chipmunk-dancing.gif');
}

.creativity {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3%;
}

.creativity-wrapper {
    display: block;
    width: 100%;
    height: 500px;
    overflow-y: scroll;
}

.creativity-wrapper::before {
    content: '';
    width: 100%;
    height: fit-content;
}

.mini-one,
.mini-two,
.mini-three,
.mini-four {
    display: flex;
    justify-content: center;
    width: 75%;
    max-height: fit-content;
    position: relative;
    background-color: rgb(36, 36, 36);
    border: 1px solid #bc13fe;
    padding: 1%;
    margin-top: 7%;
    margin-bottom: 7%;
    margin-left: 5%;
    transition: transform 1.5s ease;
}

/* .mini-one:hover+.mini-two,
.mini-one:focus+.mini-two */

.mini-one:hover,
.mini-two:hover,
.mini-three:hover,
.mini-four:hover {
    transform: scale(1.2, 1.2) translateX(10%) translateY(10%);
    border: 1px solid white;
    box-shadow: 0 0 .2rem #fff,
        0 0 .2rem #fff,
        0 0 2rem #bc13fe,
        0 0 0.8rem #bc13fe,
        0 0 2.8rem #bc13fe,
        inset 0 0 1.3rem #bc13fe;
    z-index: 2;
}

.mini-content {
    width: 80%;
    padding: 5%;
}

.creativity h2 {
    animation: pulsate 1.5s infinite alternate;
    animation: none;
    padding: 0.4em;
    width: fit-content;
}

.creativity-wrapper div:hover h2 {
    animation: pulsate 1.5s infinite alternate;
}

@keyframes pulsate {

    100% {
        text-shadow:
            0 0 4px #fff,
            0 0 11px #fff,
            0 0 19px #fff,
            0 0 40px #bc13fe,
            0 0 80px #bc13fe,
            0 0 90px #bc13fe,
            0 0 100px #bc13fe,
            0 0 150px #bc13fe;
    }

    0% {

        text-shadow:
            0 0 2px #fff,
            0 0 4px #fff,
            0 0 6px #fff,
            0 0 10px #bc13fe,
            0 0 45px #bc13fe,
            0 0 55px #bc13fe,
            0 0 70px #bc13fe,
            0 0 80px #bc13fe;
    }
}

.creativity-wrapper img {
    max-width: 300px;
    max-height: 300px;
    margin: 2%;
    border-radius: 50px;
    border: 3px solid #bc13fe;
}

.mini-one:hover img[alt*="First image"],
.mini-two:hover img[alt*="Second image"],
.mini-three:hover img[alt*="Third image"],
.mini-four:hover img[alt*="Four image"] {
    border: 1px solid white;
    box-shadow: 0 0 .2rem #fff,
        0 0 .2rem #fff,
        0 0 2rem #bc13fe,
        0 0 0.8rem #bc13fe,
        0 0 2.8rem #bc13fe,
        inset 0 0 1.3rem #bc13fe;
}

.creativity-wrapper img[alt*="First image"] {
    content: url('https://media.tenor.com/whckVqKhLOYAAAAd/chipmunk-diving-chipmunk-dancing.gif');
}

.creativity-wrapper img[alt*="Second image"] {
    content: url('https://media.tenor.com/whckVqKhLOYAAAAd/chipmunk-diving-chipmunk-dancing.gif');
}

.creativity-wrapper img[alt*="Third image"] {
    content: url('https://media.tenor.com/whckVqKhLOYAAAAd/chipmunk-diving-chipmunk-dancing.gif');
}

.creativity-wrapper img[alt*="Four image"] {
    content: url('https://media.tenor.com/whckVqKhLOYAAAAd/chipmunk-diving-chipmunk-dancing.gif');
}

footer {
    display: flex;
    width: 102%;
    border-top: 3px solid rgb(255, 174, 255);
}

.footer-logo {
    width: 28%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2%;
    order: 2;
}

.footer-logo h3 {
    font-size: 175%;
    margin-bottom: 1%;
}

.footer-credit {
    width: 40%;
    order: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-right: 2%;
}

.footer-credit h3 {
    font-size: 80%;
    text-align: end;
    margin-right: 0;
}

.footer-form {
    background-color: rgb(36, 36, 36);
    border-radius: 10px;
    box-shadow: 0 0 10px black;
    padding: 20px;
    margin: 2%;
    width: 24%;
    order: 1;
}

.footer-form p {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-form label {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.footer-form input[type="text"],
.footer-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: none;
    background-color: #dda3f4e0;
    box-shadow: 0 0 5px rgb(240, 234, 234);
    font-size: 16px;
    color: #000000;
}

.footer-form input[type="radio"] {
    display: none;
}

.footer-form input[type="radio"]+label {
    display: inline-block;
    padding: 5px 10px;
    margin-right: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    cursor: pointer;
}

.footer-form input[type="radio"]:checked+label {
    background-color: purple;
    color: white;
    border-color: purple;
}

.footer-form button {
    background-color: purple;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.footer-form button:hover {
    background-color: purple;
}

@media screen and (min-width: 600px) {
    body {
        min-width: 870px;
    }
}

@media screen and (max-width: 600px) {

    body {
        max-width: 100%;
    }

    nav a {
        margin: 1.5px;
        font-size: 13px;
    }

    .nav-logo-title a {
        font-size: 18px;
        margin-left: 1px;
    }

    .header-texts {
        width: 90%;
    }

    .header-texts::before {
        display: none;
    }

    .header-texts h1 {
        font-size: 300%;
    }

    .header-texts h3 {
        font-size: 150%;
    }

    .header-filler div {
        animation-duration: 2s;
    }

    .content {
        width: 80%;
        border-right: 0;
        border-bottom: 1px solid violet;
    }

    .content-aside {
        display: block;
    }

    .content-aside aside {
        width: 80%;
        margin-left: 10%;
        margin-top: 5%;
        display: flex;
    }

    .content-aside aside::after {
        visibility: visible;
        position: absolute;
        top: 10%;
        display: flex;
        justify-content: center;
        text-align: center;
        background-color: transparent;
        width: 100%;
        height: 50%;
        font-size: 150%;
        font-weight: bold;
        color: white;
    }

    .content-aside aside h2 {
        display: none;
        margin: 0;
        padding: 0;
    }

    .content-aside aside ul {
        margin-top: 25%;
        font-size: 100%;
        position: relative;
    }

    .article {
        display: flex;
        flex-direction: column;
        margin-top: 10px;
        margin-bottom: 50px;
        position: relative;
        width: 100%;
        padding-bottom: 30%;
    }

    .article img {
        margin-top: 10%;
    }

    .row-second {
        display: flex;
        flex-direction: column-reverse;
    }

    .row-second td:last-child {
        width: 100%;
        margin-right: 0;
    }

    .row-second {
        width: 95%;
        padding: 5%;
    }

    .article-long {
        background-image: none;
        width: 100%;
        padding-top: 0;
    }

    .creativity-wrapper div {
        flex-direction: column;
    }

    .mini-content {
        width: 90%;
        margin: 5%;
    }

    .creativity-wrapper img {
        max-width: 80%;
        margin: 10%;
        margin-bottom: 0;
    }

    footer {
        flex-direction: column;
    }

    .footer-logo,
    .footer-form {
        width: 85%;
        margin: 2%;
    }

    .footer-credit {
        width: 95%;
        margin: 2%;
    }

    .footer-form {
        order: 2;
    }

    .article h3,
    .article-long h3 {
        font-size: 150%;
    }
}