* {
    padding: 0;
    margin: 0;
}

body{
    background-color: #000;
    color: #fff;
    
    font-family: 'SF Pro', 'Arial', sans-serif;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    width: 100vw;
}

.hero-container{
    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url('./assets/stroke.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-width: 100vw;

    box-sizing: border-box;

    position: relative;
}

.hero-bg-overlay{
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: space-between;
    
    padding: 0 6vw;
}

.content{
    display: flex;
    flex-direction: column;
    align-items: start;

    margin-top: -40px;
    margin-right: 20px;
    
}

.icon{
    width: 80px;
    height: 80px;

    margin-bottom: 15px;
}

.title{
    font-size: 70px;
    font-weight: bold;
    line-height: 1.2;
}

.description{
    padding: 10px 0;
    font-size: 18px;
    font-weight: 300;
    color: #999;
    line-height: 1.5;

    max-width: 700px;
}

.demo{
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    flex: 1;

    height: 600px;
}

.demo-video-container{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-video-container > video{
    width: 269px;
    height: auto;
    margin-left: -3px;
    border-radius: 20px;
}

.black-bar{
    width: 250px;
    height: 30px;
    background-color: black;

    position: absolute;
    top: 0px;
}

.demo-image{
    position: absolute;
    width: 300px;
    height: auto;
}

.get-it-on-the-app-store > img{
    width: 150px;
    margin-top: 20px;
}

.bottom-bar-links{
    position: absolute;
    bottom: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
    height: 100px;
}

.bottom-bar-links > a{
    color: #999;
    font-size: 14px;
}

.privacy-parent, .features-parent{
    text-decoration: none;
}

.privacy-parent > .title, .features-parent > .title{
    margin-bottom: 40px;
}

.privacy-parent a, .features-parent a{
    text-decoration: none;
    color: #fff;
}

.privacy-parent > .description, .features-parent > .description{
    margin-bottom: 20px;
}

.get-it-on-the-app-store{
    opacity: 0.5;
    cursor: not-allowed;
}

.coming-soon{
    font-size: 12px;
    font-weight: light;
    margin-top: 10px;
}

@media (max-width: 1200px) {
    .hero-bg-overlay{
        flex-direction: column;
        align-items: center;
        padding: 100px 0;
    }

    .title{
        font-size: 30px;
        font-weight: bold;
        line-height: 1.2;
    }

    .content{
        margin:0 5vw;
        margin-top: 0;

        align-items: center;
        text-align: center;
    }

    .demo{
        flex: none;
        width: 100vw;
        flex-shrink: 0;
        margin: 40px 0;
    }

    .privacy-parent, .features-parent{
        flex-direction: column;
        /* align-items: center;
        text-align: center; */
        margin: 0 10vw;
    }
}