@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@400;700;800&display=swap');
html,
body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    color: #fff;
    background: #1b0e1d;
    overscroll-behavior-x: none;
    font-family: 'Almarai', sans-serif;
}

body {
    height: auto;
}

.main-section {
    box-sizing: border-box;
    background: linear-gradient(0deg, #FBAB7E 18%, #F7CE68 100%);
}

.main-section .intro {
    background-image: url(https://twet.link/assets/images/swirlbackground.svg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    height: 100vh;
}

.title {
    width: 100%;
    color: black;
    max-width: 1024px;
}

.title h2 {
    margin: 20px;
}

.logo img {
    border-radius: 20px;
}

.logo {
    position: relative;
    width: 350px;
    height: 350px;
}

.logo img {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    color: transparent;
}

@media only screen and (max-width: 768px) {
    .logo {
        width: 80vw;
        height: 80vw;
        max-width: 190px;
        max-height: 190px;
        margin-top: 120px
    }
}

.description {
    width: 60vw;
    max-width: 535px;
    font-size: min(26px, 4vw);
    text-align: center;
    font-weight: 500;
}

a.store-btn {
    display: flex;
    min-width: 175px;
    min-height: 58px;
    position: relative;
}

.download-sec {
    display: flex;
    justify-content: center;
    gap: 27px;
    margin-top: 58px;
    flex-wrap: wrap;
}