
@font-face {
	font-family: 'Manrope';
	src: url('/fonts/Manrope-Bold.ttf') format('truetype');
	font-weight: 700;
	font-weight: bold;
}

@font-face {
	font-family: 'Manrope';
	src: url('/fonts/Manrope-Regular.ttf') format('truetype');
	font-weight: 400;
	font-weight: normal;
}

body{
    background: linear-gradient(180deg, #0E151C 0%, #203041 100%);
    overflow: hidden;
    font-family: 'Manrope', sans-serif;
}
.demo{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100vw;
    height: 100vh;
    color: white;
}
h1{
    font-weight: bold;
    font-size: 42px;
    line-height: 51px;
}
p{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #D2D2D3;
}
.text-center{
    text-align: center;
}
/* Keyframe animations */
@keyframes downloadBounce {
    to {
        transform: translateY(0px) rotate(50deg);
    }
}
@keyframes downloadBounce2 {
    to {
        transform: translateY(0px) rotate(-50deg);
    }
}

.download {
    -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
    overflow: hidden;
    border-radius: 5px;
    box-sizing: border-box;
    background: #1a1a1a;
    border: 2px solid #1a1a1a;
    color: white;
    padding: 20px 0 20px 20px;
    width: 220px;
    display: inline-block;
    position: relative;
    transition: all 300ms ease;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    margin-top: 20px;
}
.download span {
    display: block;
    position: relative;
    z-index: 1;
    transform: translate(0, 0);
}
.download span:after,
.download span:before {
    content: '';
    width: 1px;
    height: 16px;
    background: #1a1a1a;
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 100%;
    transition: all 10ms ease-out;
    transform-origin: center bottom;
    transform: translateY(0) rotate(0deg);
    animation: none;
}
.download svg {
    z-index: 0;
    fill: rgba(255,255,255,1);
    stroke: rgba(255,255,255,1);
    position: absolute;
    left: 20%;
    top: 59%;
    transform: translate(-50%, -50%) rotate(0deg) scale(0.04857);
    transition: all 350ms ease-out;
    height: 2000px;
}
.download:hover {
    padding: 26px 0;
    color: #1a1a1a;
    background: white;
    border-color: #1a1a1a;
}
.download:hover svg {
    left: 50%;
    fill: #1a1a1a;
    stroke: #1a1a1a;
    transform: translate(-30%, -50%) rotate(60deg) scale(1);
}
.download:hover span {
    transform: translate(0, -10px) scale(1.1);
    transition: transform 400ms ease-out 400ms;
}
.download:hover span:after,
.download:hover span:before {
    opacity: 1;
    transition: all 400ms ease-out 400ms, transform 300ms ease-in 100ms;
}
.download:hover span:after {
    transform: translateY(7px) rotate(50deg);
    animation: downloadBounce 800ms linear alternate infinite;
}
.download:hover span:before {
    transform: translateY(7px) rotate(-50deg);
    animation: downloadBounce2 800ms linear alternate infinite;
}
.download svg#android {
    transform: translate(-50%, -51%) rotate(0deg) scale(0.4);
    height: 90px;
}
.download svg#ios {
    transform: translate(-50%, -55%) rotate(0deg) scale(0.355);
    height: 90px;
}
.download:hover svg#android {
    left: 50%;
    fill: #1a1a1a;
    stroke: #1a1a1a;
    transform: translate(-50%, -50%) rotate(60deg) scale(7) !important;
    opacity: 0;
}
.download:hover svg#ios {
    left: 50%;
    fill: #1a1a1a;
    stroke: #1a1a1a;
    transform: translate(-50%, -10%) rotate(60deg) scale(7) !important;
    opacity: 0;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

@media only screen and (max-width: 600px) {
    h1{
        font-weight: bold;
        font-size: 30px;
        line-height: 39px;
    }
    p{
        font-size: 14px;
        line-height: 21px;
    }
}
