@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/*font-family: "Inter", sans-serif;*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

button {
    border: none;
    cursor: pointer;
    background-color: transparent;
}

a {
    text-decoration: none;
}

/**/

.wrapper {
    max-width: 300px;
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
}

/**/

.body {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background-color: #000000;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-image: url('../images/background.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    z-index: 1;
}


.main {
    padding-bottom: 60px;
    position: relative;
    z-index: 100;
}

.image {
    position: relative;
}

.image img {
    position: relative;
    z-index: 10;
}

.image .ellipse {
    position: absolute;
    left: 0;
    bottom: 10px;
    right: 0;
    margin: 0 auto;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #FE3269;
    box-shadow: 0 0 15px #FE3269;
}

.title {
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 68px;
    line-height: 32px;
    color: #FFFFFF;
    text-transform: uppercase;
    text-align: center;
}

.title span {
    font-size: 21px;
}

.text {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 18px;
}

.buttonWrapper {
    display: flex;
    justify-content: center;
    margin-top: 19px;
}

.buttonWrapper .button {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: #FFFFFF;
    text-align: center;
    background-color: #FF326C;
    box-shadow: 0 0 13px 0 #FF326CB5;
    padding: 12px 30px;
    border-radius: 20px;
    position: relative;
    animation: pulseButton 2s infinite;
}

@keyframes pulseButton {
    0% {
        transform: scale(1);
        box-shadow: 0 0 13px 0 #FF326CB5;
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 26px 0 #FF326CB5;
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 13px 0 #FF326CB5;
    }
}

.buttonWrapper .button img {
    position: absolute;
    width: 28px;
    height: 28px;
    left: 0;
    right: 0;
    bottom: -25px;
    margin: 0 auto;
}

.available {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #6C6E74;
    text-align: center;
    margin-top: 32px;
}

.googlePlay {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.googlePlay img {
    max-width: 180px;
}

@media screen and (max-width: 525px) {
    .background {
        background-size: cover;
    }
}
