body {
    background-color: white;
    font-family: 'Rubik', sans-serif;
    margin: 0;
    box-sizing: border-box;
}

.navbar {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1100px;
    margin: auto;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    height: 80px;
    box-sizing: border-box;
    background-color: white;
    font-family: Tajawal;
}
.H {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline-end: 8px;
    font-size: 24px;
    margin-inline-start: 12px;
}

.logo {
    font-weight: 700;
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.lang {
    color: #1f77d6;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-decoration: none;
    border-width: 1px;
    border-style: solid;
    border-color: #1f77d6;
    border-radius: 4px;
    padding: 8px 12px 8px 12px;
    margin-inline-end: 12px;
}

.main {
    padding: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 1000px;
    margin:auto
}


.slogen {
    font-size: 60px;
    font-weight: 800;
    margin-top: 26px;
    margin-bottom: 26px;
}

.details {
    font-size: 19px;
    line-height: 180%;
    letter-spacing: 0.8px;
    color: rgb(44, 44, 44);
    font-weight: 300;
    margin-top: 12px;
}

.detailsSmall {
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0.8px;
    color: rgb(44, 44, 44);
    font-weight: 300;
    margin-top: 12px;
}

.download {
    width: 400px;
    height: 70px;
    display: flex;
    align-items: center;
    border-width: 1px;
    border-color: black;
    border-style: solid;
    border-radius: 12px;
    padding: 16px;
    margin-top: 16px;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 500;
}


.icon {
    width: 40px;
    height: 40px;
    margin-inline-end: 16px;
}

.screenshot {
    width: 400px;
    padding: 20px;
    box-sizing: border-box;
}

.footer{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 24px;
    font-weight: 300;
    color: rgb(44, 44, 44);
    text-decoration: none;
}

@media only screen and (max-width: 600px) {
    .main {
        padding: 22px;
        display: flex;
        flex-direction: column;
    }
    .screenshot {
        width: 100%;
        padding: 0px;
        margin-top: 8px;
    }
    .slogen {
        font-size: 60px;
        font-weight: 800;
        margin-top: 8px;
        margin-bottom: 26px;
    }
    .download{
        width: 100%;
    }
}