body
{
    background: #FCDEE0;
    color:#59080E;
    margin: 0 auto;
}
h1, h2, h3, h4, h5, h6 
{
    margin: 0;
}
*{
    box-sizing: border-box;
}
header
{
    
    width: 80%;
    text-align: center;
}

nav
{
    height: 100vh;   
    width: 20%;
    background: #B4111C;
    animation: 2s linear animateNav;
    text-align: right;
}
nav a
{
    padding: 20px 20px;
    color: #FCDEE0;   
    text-transform: uppercase;
    display: block;
    text-decoration: none;
    animation: 2s linear animateNavItems;
}
nav a:hover
{
    background-color: #ED404B;
    color:white;
}
main
{   
    animation: animateMainItems;
}
footer
{
    background-color: #EA202C;
    height: 80px;
    width: 80%;
    position: absolute;
    text-align: center;
    color:white;
    bottom: 0;
    margin-left: -20px;
}
.currentLink{
    border-right: 5px solid #59080E;
    background-color: #ED404B; 
}
.wrapper
{
    display: flex;
    flex-flow: row wrap;
}
.mainContent
{
    height: 100vh;
    width: 80%;
    padding: 20px 0 0 20px;
    animation: 4s linear animateMain;
}
.scaleOnHover
{
    transition: all 0.3s;
}
.scaleOnHover:hover
{
    transform: scale(1.2);
}

.rotateOnHover
{
    transition: all 2s;
}
.rotateOnHover:hover
{
    transform: rotate(360deg);
}
.bollar
{
    position: absolute;
    /* right: 10%; */
    /* bottom: 350px; */
    bottom: 80px;
    right: 22.5%;
    width: 40px;
    height: 40px;
    background: #F37C84;
    border: 2px solid white;
    border-radius: 50%;
    animation: 5s infinite linear animateBallKicked;
}

.huvud
{
    position: absolute;
    bottom: 345px;
    right: 24%;
    width: 70px;
    height: 70px;
    background: #F37C84;
    border: 2px solid white;
    border-radius: 50%;
}
.kropp
{
    position: absolute;
    bottom: 200px;
    right: 24%;
    z-index: 2;
    width: 70px;
    height: 150px;
    background: #F37C84;
    border: 2px solid white;
    border-radius: 12px;
}
.ben1
{
    position: absolute;
    bottom: 80px;
    right: 25.4% ;
    width: 36px;
    height: 140px; 
    z-index: 1;
    background: #F37C84;
    border: 2px solid white;
    border-radius: 8px;
}
.ben2
{
    z-index: 3;
    position: absolute;
    bottom: 80px;
    right: 24.4% ;
    width: 36px;
    height: 140px;
    background: #F37C84;
    border: 2px solid white;
    border-radius: 8px;
    animation: animateLegKicking 5s  infinite;
}
@keyframes animateLegKicking
{
    52%{
        bottom: 80px;
        right: 25.4% ;
        transform: rotate(0deg);
    }
    55.5%
    {
        right: 23.2%;
        transform: rotate(-35deg);
        bottom: 86px;
    }
    59%
    {   right: 21%;
        bottom: 90px;
        transform: rotate(-70deg);
    }
    65%{
        transform: rotate(0deg);
        bottom: 80px;
        right: 25.4% ;
    }
}

@keyframes animateBallKicked{
    52%{
        bottom: 80px;
        right: 22.5%;
    }
    59%{
        bottom: 170px;
        right: 12%;
    }
    67%{
        bottom: 280px;
        right: 0;
    }
    73%{
        right: 12%;
        bottom: 290px;
    }
    76%{
        right: 17%;
        bottom: 280px;
    }
    79%{
        right: 22.1%;
        bottom: 255px;
    }
    87%{
        bottom: 80px;
        right: 22.5%;
    }
}
@keyframes animateNav
{
    0%{
        width: 0%;
    }
    25%{
        width: 10%;
    }
    50%{

        width: 20%;
    }
}
@keyframes animateNavItems
{
    0%{
        color: rgba(252,222,224, 0);
    }
    50%{
        color: rgba(252,222,224, 0);
    }
    75%{
        color: rgba(252,222,224, 0.5);
    }
    100%{
        color: rgba(252,222,224, 1);
    }
}

@keyframes animateMain
{
    0%{
        position: absolute;  
        right: -200vh;
        width: 80%;
    }
    26%{
        right: 0vh;
    }
    51%{
        right: 100vh;
        position: static;
    }
}

/*
#FCDEE0 - Close White

#F37C84 - Lighter red

#ED404B - Mid light red
 
#EA202C - Mid red

#B4111C - Mid dark red

#59080E - Dark Red
 
#34090C - Close to dark
*/