body {
    overflow-x: hidden;
}
nav {
    z-index: 1000;
    position: fixed;
    height: 60px;
    width: 100vw;
    background-color: var(--bgc1);
}
.navbar {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -20%;
    width: 140%;
    height: 4px;
    background: radial-gradient(circle, rgba(var(--bgc2rgb), 1) 0%, rgba(var(--bgc1rgb), 0) 70%);
    filter: drop-shadow(0px 0px 8px rgba(var(--bgc2rgb), 0.8));
}
.logo-box {
    height: 10rem;
    width: 10rem;
    margin-top: 3vh;
    margin-left: 3vw;
}
a {
    position: relative;
    margin-right: 3vw;
    color: var(--bc1);
}
a:hover {
    color: var(--bc2);
}
a::before {
    content: "";
    position: absolute;
    width: 0;
    bottom: -5px;
    right: 0;
    height: 4px;
    background: radial-gradient(circle, rgba(var(--bc1rgb), 1) 0%, rgba(var(--bgc1rgb), 0) 90%);
    filter: drop-shadow(0px 0px 8px rgba(var(--bc1rgb), 0.8));
    transition: width 0.4s ease-out, left 0s 0.4s;
}
a:hover::before {
    width: 100%;
    left: 0;
    right: auto;
    background: radial-gradient(circle, rgba(var(--bc2rgb), 1) 0%, rgba(var(--bgc1rgb), 0) 90%);
    filter: drop-shadow(0px 0px 8px rgba(var(--bc2rgb), 0.8));
}
#wip {
    min-height: 95vh;
    display: flex;
    justify-content: center;
    align-items: end;
}
#wip img {
    height: 80vh;
}
footer {
    position: relative;
    height: 5vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: -20%;
    width: 140%;
    height: 4px;
    background: radial-gradient(circle, rgba(var(--bgc2rgb), 1) 0%, rgba(var(--bgc1rgb), 0) 70%);
    filter: drop-shadow(0px 0px 8px rgba(var(--bgc2rgb), 0.8));
}

@media screen and (max-width: 1024px) {
    nav {
        height: 80px;
    }
    #wip {
        align-items: center;
    }
    #wip img {
        height: 40vh;
    }
}
@media screen and (max-width: 430px) {
    nav {
        height: 65px;
    }
    .logo-box {
        height: 8rem;
        width: 8rem;
    }
    #wip img {
        height: 25vh;
    }
}
@media screen and (max-height: 430px) {
    nav {
        height: 65px;
    }
    #wip {
        align-items: end;
    }
    #wip img {
        height: 70vh;
    }
}