#home-container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.scroll-arrow {
    position: fixed;
    width: auto;
    height: 1em;
    bottom: 2em;
    left: 50%;
    transform: translate(-50%);
}
.scroll-arrow.hide {
    display: none;
}

#symbol-logo {
    position: relative;
    max-width: 75%;
    width: 20em;
    height: auto;
}

#symbol-logo img {
    width: 100%;
    height: auto;
}

#logo-middle {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 7;
}

#logo-sides {
    z-index: 9;
    position: relative;
}

#name-logo {
    width: 15em;
    max-width: 55%;
    margin-top: 2em;
    margin-left: -2em;
    z-index: 9;
}

#vision {
    background: var(--color2);
    margin-top: 90vh;
    margin-bottom: -3em;
    position: relative;
    z-index: 10;
}

#home-texture {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    position: fixed;
    right: 0;
    bottom: 0;
}

#paper {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid red;
    z-index: 8;
}

/*
Responsive
----------------------------------------------------------------------------*/
@media only screen and (min-width: 600px) {
    #home-texture {
        max-width: 70%;
    }
}

@media only screen and (min-width: 900px) {

    #home-container {
        flex-direction: row;
    }

    #symbol-logo {
        width: 30em;
    }

    #name-logo {
        margin-left: 0;
        margin-top: -5em;
    }

    #home-texture {
        height: 100%;
        max-height: max-content;
        max-height: 70%;
    }

    #vision {
        width: 25em;
        padding: 4em;
        left: -8em;
    }
}

@media only screen and (min-width: 1200px) {

    #symbol-logo {
        width: 40em;
    }

    #name-logo {
        width: 17em;
        margin-left: 0;
        margin-top: -8em;
    }

    #vision {
        width: 30em;
        left: -9em;
    }
}