/* html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Helvetica;
}

header {
    color: white;
    padding: 0 10px;
    background-color: rgb(2, 2, 143);
} */

/* nav {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
} */

/* #nav-container {
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    color: white;
    gap: 10px;
    align-items: center;
    padding-left: 0px;
}

#li-container {
    display: flex;
    gap: 20px;
} */

/* li {
    list-style-type: none;
    justify-content: center;
}

li a {
    color: white;
    text-decoration: none;
    font-size: 30px;
    font-weight: bolder;
}

li a:hover {
    color: rgb(149, 255, 49);
} */

/* #hero {
    height: 750px;
    background-color: yellow;
}

#logo {
    font-size: 50px;
    margin-right: auto;
    cursor: pointer;
    transition: all .5s ease 0s;
}

#logo:hover {
    color: red;
    transform: rotate(3deg);
} */

/* #button-follow {
    margin-left: auto;
    padding: 6px;
    background-color: red;
    color: white;
    font-weight: bold;
    font-size: 15px;
    border: none;
    border-radius: 10px;
}

#button-follow:hover {
    cursor: pointer;
    background-color: rgb(255, 114, 114);
    color: rgb(239, 255, 16);
} */

#top-bar {
    position: fixed;
    height: 5px;
    width: 100%;
    top: 0;
    background-color: red;
    animation: progress-vertical;
    animation-timeline: scroll();
    transform-origin: 0%;
}

#bottom-bar {
    height: 5px;
    width: 100%;
    bottom: 0;
    background-color: red;
    position: fixed;
    animation: progress-vertical;
    animation-timeline: scroll();
    transform-origin: 100%;
}

#left-bar {
    height: 100vh;
    width: 5px;
    left: 0;
    background-color: red;
    position: fixed;
    animation: progress-horizontal;
    animation-timeline: scroll();
    transform-origin: 0 100%;
}

#right-bar {
    height: 100vh;
    width: 5px;
    right: 0;
    background-color: red;
    position: fixed;
    animation: progress-horizontal;
    animation-timeline: scroll();
    transform-origin: 100% 0%;
}


@media (max-width: 768px) {
    #logo {
        margin: auto;
    }

    #nav-container {
        margin: auto;
        flex-direction: row;
    }

    li a {
        font-size: 20px;
    }

    header {
        padding: 13px 0px;
    }
}

@keyframes progress-vertical {
    0% {
        transform: scaleX(0)
    }

    100% {
        transform: scaleX(1)
    }
}

@keyframes progress-horizontal {
    0% {
        transform: scaleY(0)
    }

    100% {
        transform: scaleY(1)
    }
}

/* #img-background {
    min-height: 500px;
    background-image: url('wallpaper.png');
    background-attachment: fixed;
    background-position: center;
} */