body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: blue;
}

#textElements {
    transform: translate(0, -43%);
    transform-origin: left bottom;
    font-size: 3.4vh;
    color: #fff;
    margin-left: 4vw;
    width: 70vw;

    -webkit-transition: all 1.5s ease-out;
    -opera-transition: all 1.5s ease-out;
    -o-transition: all 1.5s ease-out;
    transition: all 1.5s ease-out;
}

#textElements p {
    letter-spacing: 0.045em;
    font-weight: 100;
    margin-bottom: 17px;

    
    animation: show 1s both;
}

#textElements p:last-child {
    color: #fff;
}

@keyframes show {
	0% {
		transform:translateY(10%);
	}
	100% {
		transform:translateY(0%);
	}
}

.fullScreenButton {
    position: fixed;
    top: 1;
    bottom: 20px;
    right: 40px;
    color: transparent;
}
