html, body{
    height: 100vh;
    width: 100vw;
    padding: 0;
    margin: 0;
    color: white;
    font-family: Sans-Serif;
    background: #49d1fb;
    background: -moz-linear-gradient(top, #49d1fb 0%, #7213d3 100%);
    background: -webkit-linear-gradient(top, #49d1fb 0%, #7213d3 100%);
    background: linear-gradient(to bottom, #49d1fb 0%, #7213d3 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#49d1fb', endColorstr='#7213d3', GradientType=0);
}

.container{
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
}

.container .catch{
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
}

.container .catch .bg {
   position: absolute;
   top: 0;
   left: 0;
   height: 100vh;
   width: 50vw;
   background: #49d1fb;
   background: -moz-linear-gradient(top, #49d1fb 0%, #7213d3 100%);
   background: -webkit-linear-gradient(top, #49d1fb 0%, #7213d3 100%);
   background: linear-gradient(to bottom, #49d1fb 0%, #7213d3 100%);
   filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#49d1fb', endColorstr='#7213d3', GradientType=0);
   mix-blend-mode: hard-light;
   -webkit-clip-path: polygon(0% 0%, 100% 0%, 20% 100%, 0% 100%);
   clip-path: polygon(0% 0%, 100% 0%, 20% 100%, 0% 100%);
}

.container .catch .bg_overlay {
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 50vw;
    background: #49d1fb;
    background: -moz-linear-gradient(top, #49d1fb 0%, #7213d3 100%);
    background: -webkit-linear-gradient(top, #49d1fb 0%, #7213d3 100%);
    background: linear-gradient(to bottom, #49d1fb 0%, #7213d3 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#49d1fb', endColorstr='#7213d3', GradientType=0);
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 20% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 20% 100%, 0% 100%);

}

.container .catch .content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 50vw;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 20% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 20% 100%, 0% 100%);
    text-shadow: 0px 0px 2px #000000;
}

.container .catch .content h1{
    padding-left: 20px;
    padding-top: 20px;
    margin: 0px;
    font-family: 'Rubik', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: 72px;
    width: 40vw;
}

.container .catch .content p {
    padding-left: 20px;
    font-family: 'Rubik', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 20px;
}

.vegas-animation-slowzoom {
    animation: slowzoom ease-out;
}

@keyframes slowzoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}