body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    flex: 1;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.navbar {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1200px;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    height: 80px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    align-self: center;
}

.headerLinks {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 24px;
}

.container {
    max-width: 1000px;
    width: 100%;
    padding: 16px;
    align-self: center;
    box-sizing: border-box;
}

.headerLink {
    color: rgb(51, 51, 51);
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
}

.logo {
    width: 70px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline-end: 8px;
    font-size: 24px;
    margin-inline-start: 12px;
}

.lang {
    color: #1f77d6;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    border-width: 1px;
    border-style: solid;
    border-color: #1f77d6;
    border-radius: 4px;
    padding: 12px 36px 12px 36px;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}

.main {
    padding: 22px;
    display: flex;
    flex-direction: row;
    max-width: 1000px;
    margin: auto;
    margin-top: 32px;
}


.slogen {
    font-size: 50px;
    font-weight: 800;
    margin-top: 50px;
    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;
    text-align: justify;
}

.detailsar {
    font-size: 19px;
    line-height: 180%;
    color: rgb(44, 44, 44);
    font-weight: 300;
    margin-top: 12px;
    text-align: justify;
}

.detailsSmall {
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0.8px;
    color: rgb(44, 44, 44);
    font-weight: 300;
    margin-top: 12px;
}



.icon {
    width: 40px;
    height: 40px;
    margin-inline-end: 16px;
}

.screenshot {
    width: 400px;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 24px;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    margin-bottom: 32px;
    color: rgb(44, 44, 44);
    height: 40px;
    padding-bottom: 24px;

}

.row3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: auto;
    row-gap: 40px;
}

.largeTitle {
    font-size: 50px;
    text-align: center;
    margin: auto;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 40px;
}

.productContainer {
    width: 28%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    row-gap: 12px;
    text-align: center;
}

.productImage {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
}

.email{
    text-decoration: none;
    color: unset;
}

@media only screen and (max-width: 600px) {
    .main {
        padding: 22px;
        display: flex;
        flex-direction: column;
    }

    .screenshot {
        width: 100%;
        padding: 0px;
        margin-top: 32px;
        border-radius: 8px;
    }

    .slogen {
        font-size: 50px;
        font-weight: 800;
        margin-top: 8px;
        margin-bottom: 26px;
    }

    .contactus {
        width: 100%;
        margin-top: 24px;
        margin-bottom: 24px;
    }

    .footer {
        margin-top: 8px;
        margin-bottom: 16px;
    }

    .productContainer {
        box-sizing: border-box;
        width: 100%;
    }

    .headerLinks {
        display: none;
    }
}