<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Store Landing Page */

.cos-landing__title {
    text-align: center;
    color: #fff;
    background: #000;
}

.cos-landing__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cos-landing__item {
    flex: 1;
    text-align: center;
    background: #fff;
}

.cos-landing__item-wrapper h2 {
    color: #fff;
    margin: 0;
}

.cos-landing__item-wrapper {
    padding: 50px 0;
    background: #000;
    transition: 0.3s ease-in-out;
}

.cos-landing__item-wrapper:hover {
    transform: scale(0.95);
    transition: 0.3s ease-in-out;
}

.landing-button-wrapper {
    display: flex;
    max-width: 750px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 50px;
}

.landing-title h1 {
    font-weight: bold;
    font-family: syncopate;
    text-transform: uppercase;
    text-align: center;
    padding: 60px 0 0 0;
}

.button-container-wrapper {
    padding: 20px;
}

/* Button Style and Animation */

 .button-container-2 {
    position: relative;
    width: 300px;
    height: 90px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0vh;
    overflow: hidden;
    border: 1px solid #000;
    font-family: Lato,sans-serif;
    font-weight: 300;
    transition: .5s;
    letter-spacing: 1px;
    border-radius: 8px;
}
 .button-container-2 button {
	 width: 101%;
	 height: 100%;
	 font-family: 'Lato', sans-serif;
	 font-weight: 300;
	 font-size: 11px;
	 letter-spacing: 1px;
	 font-weight: bold;
	 background: #000;
	 -webkit-mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png");
	 mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png");
	 -webkit-mask-size: 3000% 100%;
	 mask-size: 3000% 100%;
	 border: none;
	 color: #fff;
	 cursor: pointer;
	 -webkit-animation: ani2 0.7s steps(29) forwards;
	 animation: ani2 0.7s steps(29) forwards;
}
 .button-container-2 button:hover {
	 -webkit-animation: ani 0.7s steps(29) forwards;
	 animation: ani 0.7s steps(29) forwards;
}
 .mas {
    position: absolute;
    color: #000;
    text-align: center;
    width: 101%;
    font-family: Lato,sans-serif;
    font-weight: 300;
    position: absolute;
    font-size: 11px;
    margin-top: 35px;
    overflow: hidden;
    font-weight: 700;
}
 @-webkit-keyframes ani {
	 from {
		 -webkit-mask-position: 0 0;
		 mask-position: 0 0;
	}
	 to {
		 -webkit-mask-position: 100% 0;
		 mask-position: 100% 0;
	}
}
 @keyframes ani {
	 from {
		 -webkit-mask-position: 0 0;
		 mask-position: 0 0;
	}
	 to {
		 -webkit-mask-position: 100% 0;
		 mask-position: 100% 0;
	}
}
 @-webkit-keyframes ani2 {
	 from {
		 -webkit-mask-position: 100% 0;
		 mask-position: 100% 0;
	}
	 to {
		 -webkit-mask-position: 0 0;
		 mask-position: 0 0;
	}
}
 @keyframes ani2 {
	 from {
		 -webkit-mask-position: 100% 0;
		 mask-position: 100% 0;
	}
	 to {
		 -webkit-mask-position: 0 0;
		 mask-position: 0 0;
	}
}
 a {
	 color: #00ff95;
}
</pre></body></html>