body, h1, p, h2, h3, figure {
    margin: 0;
}

body {
    background-color: #01161E;
    color: #598392;
}

body::-webkit-scrollbar {
    display: none;
}

#nav-link{
    padding-right: 16px;
    position: fixed;
    right: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: space-around;
}

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

.scroll-indi{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 30px;
    height: 60px;
    border: 1px solid #598392;
    border-radius: 100px;
    left: 50%;
    bottom: 40px;
    transform: translate(-50%, 0);
    z-index: -1;
}

.scroll-indi::before{
    animation: scroll_down 1.5s infinite;
    content: "";
    width: 8px;
    height: 8px;
    background-color: #598392;
    border-radius: 50%;
}

@keyframes scroll_down {
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(12px);
    }
    100%{
        transform: translateY(0);
    }
}