@keyframes bg-anim {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

:root {
    --primarycolor: #29235c;
    --secondarycolor: #6158af;
    --tertiarycolor: #29235c;
}

html {
    overflow: auto;
    transition: background-image 0.5s;
    font-family: 'Darker Grotesque', Outfit, Verdana, sans-serif;
    background-color: var(--primarycolor);
    background-image: linear-gradient(135deg, var(--primarycolor), var(--secondarycolor), var(--tertiarycolor));
    background-size: 500%;
    background-repeat: no-repeat;
    animation-name: bg-anim;
    animation-duration: 15s;
    animation-iteration-count: infinite;
}

body {
    background-image: url('/portfolio-site/Assets/Images/my_brand_pattern.png');
    margin: 0px 0px;
    overflow: auto;
    min-height: 100vh;
    max-width: 100vw;
}

a:link {
    text-decoration: none;
}

li {
    display: inline;
    margin: 24px;
}

address {
    text-decoration: none;
}

.top-bar {
    height: 80px;
    background-color: transparent;
    overflow: visible;
    box-sizing: border-box;
    padding: 16px 32px;
    position: fixed;
    top: 0px;
    width: 100%;
    display: flex;
    flex-direction: row;
}

.nav-header {
    width: 50%;
    display: flex;
}

.nav-logo {
    height: 100%;
    transition: transform 500ms;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-logo:hover {
    transform: rotateZ(51deg);
}

.nav-links {
    width: 50%;
    display: flex;
    justify-content: end;
}

a.nav-link {
    color: white;
    font-size: 1.5em;
    align-self: center;
    transition: color 500ms;
    margin: 0px 20px;
}

a.nav-link:hover {
    color: #000;
}

.nav-title {
    margin: 0px 20px;
    font-size: 2em;
    color: white;
    font-weight: 900;
    align-self: center;
}

.page-content {
    height: 100vh;
    display: flex;
    width: 100%;
    box-sizing: border-box;
    padding: 40px;
    flex-direction: column;
    justify-content: center;
}

.name-header {
    font-size: 8vw;
    text-align: center;
    color: white;
    font-weight: 900;
    line-height: 0.8em;
    margin: 0px;
    text-shadow: 8px 8px #03055e3b;
    transition: transform 100ms, font-size 0.6s;
    transition-timing-function: cubic;
}

.name-header:hover {
    transform: skew(-10deg, 1deg);
}

.short-skill-description {
    font-size: 2vw;
    text-align: center;
    color: white;
    font-weight: 400;
    margin: 0px;
    transition: font-size 0.6s;
    line-break: auto;
    transition-timing-function: cubic;
}

a.social-link {
    height: 100%;
    color: #fff;
    font-size: 20px;
    margin: 0px 16px;
    transition: color 1s, transform 0.4s, text-shadow 0.2s;
}

a.social-link:hover {
    transform: scale(1.5, 1.5);
}

a.social-link:hover {
    text-shadow: 2px 2px #eeeeee11;
}

a.social-link[title="LinkedIn"]:hover {
    color: #0077b5;
}

a.social-link[title="Instagram"]:hover {
    color: #d6249f;
}

a.social-link[title="Twitter"]:hover {
    color: #1DA1F2;
}

abbr {
    text-decoration: none;
}

div.social-links{
    margin-top: 16px;
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.copyright {
    color: #fff;
    text-align: center;
}

.page-footer {
    width: 100%;
    height: 80px;
    padding: 16px 32px;
    position: fixed;
    bottom: 0px;
    box-sizing: border-box;
}

@media screen and (max-width: 800px) {
    .nav-header {
        width: fit-content;
    }

    .nav-links {
        width: 100%;
        font-size: 0.8em;
    }

    body {
        height: 100svh;
        width: 100svw;
    }

    .nav-title {
        display: none;
    }

    .copyright {
        float: none;
        width: 100%;
    }

    .name-header {
        font-size: 5rem;
        margin-bottom: 16px;
    }

    .short-skill-description {
        font-size: 2em;
    }
}