* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    z-index: 0;
    background: #000;
    min-height: 100vh;
    text-align: center;
}

.navi {
    z-index: 2;
    top: 29%;
    animation: navi_animate 9s linear;
    opacity: 1;
    display: inline;
    align-items: center;
    justify-content: center;
    position: fixed;
}

.navi_p {
    position: fixed;
    display: inline-block; 
    motion-path: view-box;
    left: 50%;
    transform: translate(-50%);
}

@keyframes navi_animate {
    0% {
        opacity: 0;
        top: 35%;
    }
    50% {
        opacity: 0;
        top: 35%;
    }
    75% {
        opacity: 0.5;
        top: 35%;
    }
    80% {
        opacity: 1;
        top: 32%;
    }
    100% {
        opacity: 1;
        top: 29%;
    }
}

.button_steam {
    display: inline;
    z-index: 3;
    background-color: black;
    color: white;
}

.button_steam:hover {
    pointer-events: visible;
    transition: 0s;
    background: #0f0;
    cursor: alias;
    animation: animate 4s linear infinite;
}

.button_linkedin {
    display: inline;
    z-index: 3;
    background-color: black;
    color: white;
}

.button_linkedin:hover {
    pointer-events: visible;
    transition: 0s;
    background: #0f0;
    cursor: alias;
    animation: animate 4s linear infinite;
}

.button_github {
    display: inline;
    z-index: 3;
    background-color: black;
    color: white;
}

.button_github:hover {
    pointer-events: visible;
    transition: 0s;
    background: #0f0;
    cursor: alias;
    animation: animate 4s linear infinite;
}

img {
    padding: 5px 10px 0 10px;
    background-color: black;
}

ul {
    position: absolut;
    z-index: 2;
    list-style: none;
    padding: 5px;
    margin: 0;
    height: 100px;
    width: auto;
}

li {
    padding: 10px 0 10px 0;
}

.content {
    z-index: 2;
    width: 100%;
    max-height: auto;
    position: fixed;
    text-align: center;
    top: 35%;
    bottom: 40%;
}

.h_animate {
    animation-name: moveup_h;
    animation-duration: 2s;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -o-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

h1 {
    z-index: 2;
    background-color: black;
    font-size: 10em;
    animation: animate 4s linear infinite;
    color: #0f0;
    transition: 0s;
}

@keyframes moveup_h {
    from {
        margin-top: -700px;
    }
    to {
        margin-top: 0;
    }
}

.container {
    z-index: 1;
    position: relative;
    overflow: hidden;
    height: 100vh;
    animation: animate 4s linear infinite;
}

@keyframes animate {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

p {
    color: white;
    background-color: black;
    font-size: 1.5em;
    margin-top: 5px;
    padding: 5px 5px 5px 5px;

    animation-name: moveup_p1;
    animation-duration: 9s;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -o-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

@keyframes moveup_p1 {
    from {
        margin-top: 1400px;
    }
    to {
        margin-top: 5px;
    }
}

p:first-of-type {
    color: white;
    background-color: black;
    font-size: 2.2em;
    margin-top: 5px;
    padding: 0 5px 5px 5px;

    animation-name: moveup_p2;
    animation-duration: 7s;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -o-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

@keyframes moveup_p2 {
    from {
        margin-top: 1400px;
    }
    to {
        margin-top: 5px;
    }
}

.footer {
    z-index: 100;
    color: white;
    box-shadow: black 0px -8px 12px 0px ;
    padding: 8px 0;
    bottom: 0;
    position: fixed;
    width: 100%;
    height: auto;
    background-color: #000000;
    text-align: center;
    animation-name: moveup;
    animation-duration: 15s;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -o-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

@keyframes moveup {
    from {
        font-size: 0;
        bottom: -100px;
    }
    to {
        font-size: 1em;
        bottom: 0;
    }
}

a:link {
    font-size: small;
    font-family: "Lucida Sans";
    color: white;
    text-decoration: none;
}

a:hover {
    color: rgb(174, 255, 224);
}

a:visited {
    color: white;
}

.row {
    display: inline-flex;
    margin-left: -25px;
    margin-top: -16px;
    overflow: hidden;
}

.row:nth-child(even){
    margin-left: 1px;
}

.hexagon {
    background: #111;
    position: relative;
    height: 55px;
    width: 50px;
    margin: 1px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%,0% 75%, 0% 25%);
    transition: 1.5s;
}

.hexagon::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    background: rgba(255,255,255,0.2);
}

.hexagon:hover {
    pointer-events: none;
    transition: 0s;
    background: #0f0;
    cursor: alias;
}

hr {
    border-top: 1px;
    border-color: #0f0;
    margin-bottom: 5px;
    animation: rainbow 4s linear infinite;
}

.p_frame {
    animation: rainbow 4s linear infinite;
}

.p_frame>p:first-of-type {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #0f0;
}

.p_frame>p:last-of-type {
    border-top: 1px solid #0f0;
}

@keyframes rainbow {
    0% {filter: hue-rotate(0deg);}
  100% {filter: hue-rotate(360deg);}
}