body {
    
    background-color: var(--color-main-4);
    margin: 0 ;
    height: 100%;
    width: 100%;
}

.wrapper-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-main-4);
    padding-bottom: 3rem;
    margin-bottom: 0;
}

.wrapper-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-accent-2);
    padding-bottom: 3rem;
    margin-bottom: 0;
}

.wrapper-1 > * {
    flex: 1 100%;
}

.wrapper-2 > * {
    flex: 1 100%;
}

.content {
    flex: 1 0 auto;
    padding: .3rem 0rem .3rem 0rem;
    width: 90%;
    margin: auto;
    max-width: var(--sitewidth);
}

/* Header */
header {
    background: var(--background-gradient);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3vw), 0 100%);
    padding-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Footer */

.footer-grey {
    text-align: center;
    background: var(--color-accent-2);
    width: 100%;
    padding: 1rem 0 1rem 0;
}

.footer-white {
    text-align: center;
    background: var(--color-main-4);
    width: 100%;
    padding: 1rem 0 1rem 0;
}

.footer-grey a, .footer-white a {
    text-decoration: none;
    color: var(--color-main-2);
}

.footer-grey a:hover, .footer-grey a:focus, .footer-white a:hover, .footer-white a:focus {
    color: var(--color-accent-1-darkest);
}

/* Navigation */

.navigation {
    position: fixed;
    z-index: 100;
    height: 100vh;
    width: 20rem;
    left: 100%;
    top: 0;

    background-color: var(--color-main-4);
    transition: .4s ease;
}

.navigation:hover {
    left: calc(100% - 20rem);
    box-shadow: 0rem 0rem 1rem var(--color-main-2);
}

.navigation:hover p {
    transform: rotate(-90deg);
    transition: .8s;
    color: var(--color-accent-1-darker);
}

.navigation-button {
    width: 3rem;
    height: 3rem;
    background-color: var(--color-main-4);
    box-shadow: 0rem 0rem 1rem var(--color-main-2);

    position: relative;
    left: -4rem;
    top: -9rem;
    border-radius: .5rem;
    margin-bottom: -9rem;
}

.navigation-button-area {
    position: relative;
    left: -5rem;
    top: -4rem;
    width: 6rem;
    height: 6rem;
}

.navigation-button p {
    text-align: center;
    line-height: 3rem;
    font-size: 1.5rem;
    font-weight: bold;
    
    transition: .8s;
}

.navigation h1 {
    font-size: 3rem;
}

.navigation-header {
    margin-top: -2rem;
    padding-top: 2rem;
    padding-bottom: 1rem;
    background: var(--background-gradient);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1vw), 0 100%);
}

.navigation h2 {
    font-size: 1.5rem;
    margin-bottom: .5rem;
}

.navigation a {
    text-decoration: none;
    font-weight: bolder;
    color: var(--color-main-1);
}

.navigation a:hover {
    color: var(--color-accent-1-darkest);
}

.navigation-section {
    width: 20rem;
    text-align: center;
    margin-bottom: 2rem;
}

.navigation-language {
    width: 20rem;
    text-align: center;
    margin-bottom: 2rem;
    position: absolute;
    bottom: 0rem;
}