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

html {
    scroll-behavior: smooth;
    background-color: #FBF2E9;
    font-family: "Inter", sans-serif;
}

body {
    display: flex;
    flex-direction: column;   
}

footer {
    height: 10px;
}

.header-content {
    display: flex;
    flex-direction: row;
    height: 100px;
    align-items: center;
    align-self: center;
    width: 100%;
    max-width: 1280px;
}

.header-container {
    display: flex;
    flex-direction: row;
    padding: 0 20px;
}


.header-logo {
    width: 150px;
}

.brand-name {
    display: flex;
    flex-grow: 1;
    font-family: "Lora", serif;
    font-weight: 600;
    font-size: 26px;
}

.intro-content {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    max-width: 1280px;
    margin-top: 120px;
}

.intro-container {
    padding: 0 30px;
}

.intro-item {
    flex-grow: 1;
    text-align: center; 
}

.intro-title {
    text-align: left;
    font-size: 60px;
    font-weight: 700;
    color: #202020;
}

.intro-body {
    margin-top: 30px;
    margin-right: 20px;
    text-align: left;
    font-size: 20px;
    font-weight: 400;
    color: #404040;
}

.intro-available {
    margin: 15px 25px;
    text-align: left;
    font-size: 13px;
    font-weight: 500;
    color: #707070;
}


.outro-container {
    padding: 200px 100px 30px 150px;
}

.cover-image {
    align-self: self-end;
    max-width: 50%;
    height: auto; 
    display: block;
}

.intro-download-btn {
    display: inline-block;
    margin-top: 60px;
    background-color: rgb(224, 96, 96);
    border: none;
    color: white;
    padding: 15px 45px;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
}


  
.intro-download-btn:hover {
    background-color: rgb(241, 132, 132);
}

.screenshot-content {
    display: flex;
    flex-direction: column;
    gap: 100px;
    align-self: center;
    max-width: 1280px;
    width: 100%;
    margin-top: 350px;
}

.screenshot-container {
    display: flex;
    margin-left: 10%;
    margin-right: 10%;
}

.app-screenshot-image {
    align-self: flex-start;
    flex-grow: 0; /* Prevents the image from growing */
    flex-basis: 20%; /* Sets the initial main size of the image */
    /* max-width: 20%; */
    width: 300px;
    height: auto; 
}

.screenshot-text-container {
    align-self: center;
    margin-left: 10%;
    margin-right: 10%;
}

.app-screenshot-text-title {
    color: rgb(50, 50, 50);
    font-size: 35px;
    font-weight: 700;
}

.app-screenshot-text-body {
    margin-top: 20px;
    max-width: 500px;
    font-size: 17px;
    font-weight: 400;
}

@media (max-width: 840px) {
    .header-content {
        height: 60px;
        width: 100%;
    }
        
    .header-container {
        padding: 0 10px;
    }

    .header-logo {
        width: 140px;
    }

    .brand-name {
        flex-grow: 1;
        font-family: "Lora", serif;
        font-weight: 600;
        font-size: 20px;
    }

    .intro-content {
        flex-direction: column;
        margin-top: 50px;
    }

    .intro-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        order: 1;
    }

    .cover-image {
        order: 0;
        align-self: center;
        max-width: 85%;
    }

    .intro-title {
        margin-top: 50px;
        text-align: center;
        font-size: 40px;
    }
    
    .intro-body {
        margin-top: 30px;
        margin-right: 20px;
        margin-left: 20px;
        text-align: center;
        font-size: 18px;
    }

    .intro-available {
        text-align: center;
        font-size: 11px;
        font-weight: 500;
        color: #707070;
    }
        
    .intro-download-btn {
        margin-top: 50px;
        font-size: 18px;
    }

    .screenshot-content {
        display: flex;
        align-content: center;
        margin-top: 170px;
    }
    
    .screenshot-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin: 0px;
        align-self: center;
    }
        
    .app-screenshot-image {
        align-self: center;
        flex-grow: 0; /* Prevents the image from growing */
        flex-basis: 20%; /* Sets the initial main size of the image */
        /* max-width: 20%; */
        width: 300px;
        height: auto; 
        order: 1;
    }

    .screenshot-text-container {
        align-self: center;
        margin: 0px;
        order: 0;
    }

    .app-screenshot-text-title {
        color: rgb(50, 50, 50);
        font-size: 30px;
        font-weight: 700;
        text-align: center;
    }
    
    .app-screenshot-text-body {
        margin-top: 20px;
        margin-bottom: 20px;
        max-width: 300px;
        font-size: 14px;
        text-align: center;
    }

    .outro-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 100px 0px 100px 0px;
        order: 1;
    }
}