@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@600&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Tajawal", sans-serif;
    font-weight: 400;
    direction: rtl;
}

:root {
    --primary: #2D3291;
    --secondrey: #26AAE1;
    --white: #ffffff;
    --black: #0000;
}

.container {
    background-color: #f6f6f6;
    height: 80vh;
    width: 450px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    padding-top: 25px;
    background-image: url('images/city-bg.png');
    background-repeat: no-repeat, no-repeat;
    background-position: bottom;
    background-size: contain;
    bottom: -80px;
}

.logo-img {
    height: 80px;
    display: block;
    margin: 0 auto;
    /* This will horizontally center the image */
}

.title {
    padding-top: 20px;
    color: #555555;
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 24px;
}

.social-icons {
    display: flex;
    width: 350px;
    margin: 0 auto;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 5px;
}

.social-img {
    padding: 5px;
    height: 50px;
    width: 50px;
    background-color: var(--primary);
    border-radius: 12px;
}

.social-img:hover {
    background-color: var(--secondrey);
}

.website {
    width: 350px;
    height: 60px;
    background-color: var(--primary);
    margin: 0 auto;
    border-radius: 12px;
    display: flex;
    align-items: center;
    color: white;

}

.website:hover {
    background-color: var(--secondrey);
}

.website-link {
    text-decoration: none;
    text-decoration-line: none;
}

.website-text {
    font-weight: 500;
    font-size: 22px;
}

.logo-icon {
    height: 45px;
    padding-left: 20px;
    padding-right: 20px;
}

.app {
    height: 230px;
    width: 350px;
    background-color: var(--primary);
    margin-top: 15px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    text-align: right;

}

.padd {
    padding: 15px;
}

.apptext {
    font-weight: 600;
    color: white;
    font-size: 24px;
    line-height: 2.4;
}

.appdes {
    color: white;
    font-size: 20px;
}

.download-icon {
    display: flex;
    padding-top: 20px;
    justify-content: space-between;
}

.download-icon img {
    height: 45px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    font-size: 12px;
    color: grey;
    text-align: center;
    padding-bottom: 10px;
}

@media only screen and (max-width: 480px) {
    .container {
        width: 90vw;
    }

    .social-icons {
        width: 350px;
    }

    .social-img {
        height: 50px;
    }
}