
@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-face {
    font-family: 'DezenProHeavy';
    src: url('fonts/DezenProHeavy.woff2') format('woff2'),
         url('fonts/DezenProHeavy.woff') format('woff'),
         url('fonts/DezenProHeavy.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'DezenProRegular';
    src: url('fonts/DezenProRegular.woff2') format('woff2'),
         url('fonts/DezenProRegular.woff') format('woff'),
         url('fonts/DezenProRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
body {
    margin: 0;
    padding: 0;
    background-image: url('./betr-solus-A1.svg');
    background-size: cover;
    background-position: center;
    color: white;
    font-family: "Inter", sans-serif;
    text-align: center;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
}
.logo-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}
.logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.arrow {
    font-size: 24px;
}
.heading {
    font-size: 40px;
    font-weight: bold;
    font-family: 'DezenProHeavy', sans-serif;
}
.sub-heading {
    font-size: 48px;
    margin-top: -10px;
    color: #84FFE5;
    font-family: 'DezenProHeavy', sans-serif;
}
.description {
    font-family: "Inter", sans-serif;
    max-width: 500px;
    margin-top: 30px;
    padding: 0 10px;
    font-size: 15px;
    line-height: 1.6;
}

.download-btn {
    background-color: white;
    color: #0A1931;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 20px auto;
    text-align: center;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background-color: #E6E6E6;
}

@media (max-width: 600px) {
    body{
        background-image: url('mob-bg.svg');
    }
    .container {
        padding: 20px;
    }
    .logo-section {
        flex-direction: row;
        gap: 10px;
    }
    .logo{
        width: 70px;
        height: 70px;
    }
    .heading {
        font-size: 34px;
        font-weight: bold;
    }
    .sub-heading {
        font-size: 38px;
        color: #84FFE5;
        font-weight: bold;
    }
    .description {
        font-family: "Inter", sans-serif;
        /* max-width: 500px; */
        padding: 0 10px;
        margin-top: 30px;
        font-size: 14px;
        line-height: 1.6;
}
}