* {
   margin: 0;
   padding: 0; 
   text-decoration: none;
   list-style: none;
   box-sizing: border-box;
}

:root{
    --testcolor: #e34608;
    --lighter: #cccccc;
    --light: #eeeeee;
    --dark: #373737;
}
body{
    overflow: auto;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
}

nav{
    background: var(--background-nav);
    height: 80px;
    width: 100%;
}

label.logo{
    color: var(--firstcolor);
    font-size: 1.2em;
    line-height: 80px;
    padding: 0 100px;
    font-weight: bold;
}

nav ul{
    float: right;
    margin: 0px;
}

nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}

nav ul li a{
    color: var(--firstcolor);
    font-size: 1em;
    text-transform: uppercase;
    padding: 7px 13px;
    border-radius: 3px;
    transition: .5s;
}

a.active,a:hover{
    background: var(--secondcolor);
    font-size: 1.5em;
    transition: .5s;
}

#wrapper{
    position: relative;
    width: 100vw;
    height: 100vh;
}

.content{

    color: #FFFFFF;
    font-size: 26px;
    font-weight: bold;
    text-shadow: -1px -1px 1px #000, 1px 1px 1px #000;
    position: relative;
    z-index: 100;
}

.background{
    width: 100%;
    height: 200%;
    margin: 0;
    padding: 0;
    background-color: #282828;
    position: absolute;
    z-index: -100;
}

@keyframes logrot {
    0%     {transform: rotate(0deg);}
    100%   {transform: rotate(360deg);}
}

.logoani {
    margin-top: 50px;
    width: 25rem;
    max-width: 40vw;
    height: 25rem;
    max-height: 40vw;
    -webkit-mask-image: url(./img/logo_v2.svg);
    -webkit-mask-mode: alpha;
    mask-image: url(./img/logo_v2.svg);
    mask-mode: alpha;
    mask-size="200px 200px";
    align-self: center;
    background: linear-gradient(0deg, var(--testcolor), var(--dark));
    animation-name: logrot;
    animation-duration: 60s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.36,.10,.64,.90);
}