@font-face {
	font-family: 'Coiny';
	src: url('coiny-regular-webfont.woff2') format('woff2'),
         url('coiny-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html, body{
    margin: 0;
    padding: 0;
    overflow: hidden;
}

html
{
    background-color: #e76ca9;
}

body
{
    height: 100vh; /*fallback*/
    height: 100dvh;
    width: 100vw;
}

#background {
    position: absolute;
    height: 100%;
    width: 100%;
    /* Fixes flickering caused by looping backgroud animation on Safari */
    background-image: url(./../images/wb-ppgar-splash-bg-tile.png);
    background-repeat: repeat;
    background-size: 76dvh;
    z-index: -2;
}

#scrollingBackground {
    position: absolute;
    width: 100%;
    height: 300vh; /*fallback*/
    height: 300dvh;
    background-image: url(./../images/wb-ppgar-splash-bg-tile.png);
    background-repeat: repeat;
    background-size: 76dvh;
    animation: scroll 3s linear infinite;
}

#topStripe {
    background-color: #e76ca9;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 100%);
    height: 24vh; /*fallback*/
    height: 24dvh;
    width: 100%;
}

#bottomStripe {
    background-color: #e76ca9;
    clip-path: polygon(0 35%, 100% 0, 100% 100%, 0 100%);
    height: 41vh; /*fallback*/
    height: 41dvh;
    width: 100%;
    bottom: 0;
    position: absolute;
}

@keyframes scroll {
    0% {
      transform: translate(0);
    }
    100% {
      transform: translate(0, -76dvh);
    }
  }

#container
{
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    overflow: hidden;
    align-items: center;
}

img {
    object-fit: contain;
}

#logo {
    height: 24vh; /*fallback*/
    height: 24dvh;
    padding-top: 1.75vh; /*fallback*/
    padding-top: 1.75dvh;
}

#cta {
    max-width: 78vw; /*fallback*/
    max-width: 78dvw;
    margin-top: 3.2vh; /*fallback*/
    margin-top: 3.2dvh;
}

#cta img {
    position: absolute;
    z-index: -1;
    max-height: 54vh; /*fallback*/
    max-height: 54dvh;
    max-width: 100vw; /*fallback*/
    max-width: 100dvw;
    margin-left: -11vw; /*fallback*/
    margin-left: -11dvw;
    margin-top: -5.5vh; /*fallback*/
    margin-top: -5.5dvh;
}

@media (min-aspect-ratio: 0.56) {
    #cta {
        max-width: 45vh; /*fallback*/
        max-width: 45dvh;
    }

    #cta img {
        margin-left: -5vh; /*fallback*/
        margin-left: -5dvh;
    }
}

#cta p {
    font-family: 'Coiny';
    color: #fff;
    padding: 1vh 0vh; /*fallback*/
    padding: 1dvh 0dvh;
    font-size: 2.1vh; /*fallback*/
    font-size: 2.1dvh;
    line-height: 2.4vh; /*fallback*/
    line-height: 2.4dvh;
    letter-spacing: 0.1dvh;
}

@media (max-aspect-ratio: 0.5) {
    #cta p {
        font-size: 4vw; /*fallback*/
        font-size: 4dvw;
        line-height: 4.2vw; /*fallback*/
        line-height: 4.2dvw;
    }
}

#phones {
    height: 29.5vh; /*fallback*/
    height: 29.5dvh;
    padding-top: 0.9vh; /*fallback*/
    padding-top: 0.9dvh;
}

#trynow {
    height: 8.6vh; /*fallback*/
    height: 8.6dvh;
    padding-top: 1vh; /*fallback*/
    padding-top: 1dvh;
    margin-left: -2vh; /*fallback*/
    margin-left: -2dvh;
}

#share {
    margin-top: -1vh; /*fallback*/
    margin-top: -1dvh;
}

#share p{
    font-size: 2.5vh; /*fallback*/
    font-size: 2.5dvh;
    font-family: 'Coiny';
    color: #fbe997;
    margin-left: -2vh; /*fallback*/
    margin-left: -2dvh;
}


#buttons {
    padding-top: 1vh; /*fallback*/
    padding-top: 1dvh;
}

#buttons img {
    height: 12vh; /*fallback*/
    height: 12dvh;
    max-width: 25vw; /*fallback*/
    max-width: 25dvw;
    padding: 0 1.1vh; /*fallback*/
    padding: 0 1.1dvh;
}

#footer {
    padding-top: 0.2vh; /*fallback*/
    padding-top: 0.2dvh;
}

p {
    color: #fff;
    font-size: 1.45vh; /*fallback*/
    font-size: 1.45dvh;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    margin: 0;
}

a { 
    text-decoration: none;
    color: #fff;
}

#footer a:hover {
    text-decoration: underline;
}

a img{
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease-out;
}

a img:hover {
    transform: scale(1.1);
}