body {
    background-color: #c77400;
    color: white;
    overflow-y: hidden;
    width: auto;
	height: 100vh;
    position: relative;
}

main {
    width: 40%;
}
a {
    color: white;
}

.animation svg {
    position: absolute;
    width: 350%;
    height: auto;
    top: -120%;
    left: -180%;
    z-index: -1;
    transform-origin: center;
    animation: gummi 5s linear forwards;
}
  
@keyframes gummi {
    0% { 
      transform: scale(1); 
      left: -180%;
    }
    50% { 
       transform: scale(2, 0.8);
    }
    100% { 
       transform: scale(1, 1.2);
       left: -95%;
    }
}

/* iPad */
@media (max-width: 1040px) {
    main {
        width: 90%;
    }
    body {
		height: 100vh;
    }
}