@font-face {
    font-family: 'Product Sans';
    src: url('../font/Product\ Sans\ Regular.ttf') format('truetype'); 
}

@font-face {
    font-family: 'SF Pro';
    src: url('../font/SFPRODISPLAYREGULAR.OTF') format('truetype'); 
}

main {
    position: relative;
    width: 100%;
    height: 850px; 
    overflow: hidden;
    background-image: url("../assets/background.jpeg");
}

main > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -1;
}

section{
    margin-top: 9rem;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;

}

section > h1{
    font-family: Poppins, "Arial Black", Gadget, sans-serif;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -2px;
    font-style: normal;
    color: white;
    font-size: 45px;
}

div > h3{
    font-family: Poppins, "Arial Black", Gadget, sans-serif;
    line-height: 1.25;

    font-style: normal;
    color: white;
    margin-top: 0.5rem;
    font-size: 20px;
    font-weight: bold;
}

.box-btn{
    display: flex;
    flex-direction: column;
    margin-top: 0.5rem;
    gap: 1rem; 
}

.box-btn-img{
    width: 20px;
}

.box-btn > a{
    background-color: #d00808;
    
    padding: 15px 30px;
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 1rem;
    font-family: 'Product Sans', sans-serif;
    font-size: 20px;
    text-decoration: none;
    color: white;
    border-radius: 4px;
}

    .box-btn > a:hover{
        background-color: #d81f18;
    }


#btn-google-store{
    font-family: 'Product Sans', sans-serif;
}

#btn-apple-store{
    font-family: 'SF Pro', sans-serif;
}

@media screen and (min-width: 850px) {

    .box-btn{
        flex-direction: row;
        gap: 2rem;
    }

    .box-btn > a{
        width: max-content;
        padding: 15px 30px;
    }
}

@media screen and (min-width: 1024px) {

    section{
        margin-top: 6rem;
        padding: 20px 30px;
        width: 45%;

    }

    section > h1{
        font-size: 60px;
    }

    
}