* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    margin: 0;
    font-family: "Cairo", sans-serif;
    text-align: center;
    background-color: #f0f0f0;
    direction: rtl;
    display: flex;
    flex-direction: column;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

img {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 0;
    right: 0;
    margin-right: 60px;
    margin-top: 20px;
}

.all {
    margin: 150px auto;
    flex-grow: 1; 
}
h1 {
    margin-bottom: 40px;
}
.all p {
    margin-bottom: 20px;
}
input {
    font-family: "Cairo", sans-serif;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    max-width: 300px;
    margin: 10px 0;
    border-radius: 4px;
    border: 1px solid #ccc;
}

button {
    font-family: "Cairo", sans-serif;
    padding: 10px 20px;
    font-size: 17px;
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 20px;
}

button:hover {
    background-color: #218838;
}

#result {
    margin-top: 20px;
    font-size: 18px;
}

/* Start Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 15px;
    bottom: 0;
    width: 100%;
    height: auto;
}

.footer p:not(.copyright) {
    text-transform: uppercase;
    padding: 20px;
    border-bottom: 1px solid white;
    font-size: 22px;
    width: fit-content;
    margin: 20px auto;
}
.footer .social-icons {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.footer .social-icons img {
    position: relative;
    margin: 20px;
    width: 30px; /* تعديل حجم الأيقونات */
    height: 30px; /* تعديل حجم الأيقونات */
    transition: transform 0.3s ease;
}

.footer .social-icons a .insta {
    width: 37px;
    height: 37px;
}

.footer .social-icons img:hover {
    transform: scale(1.1); /* تأثير التكبير عند التمرير */
}


.footer .copyright {
    margin-top: 20px;
    font-size: 18px;
}

.footer .copyright span a {
    font-weight: bold;
    color: #ad9551;
    text-decoration: none;
}
/* Responsive Design */
@media (max-width: 768px) {
    img {
        width: 80px;
        height: 80px;
        margin-right: 20px;
    }

    button {
        font-size: 15px;
        padding: 8px 16px;
    }

    input {
        width: 90%;
    }

    .footer p {
        font-size: 18px;
    }

    .footer .social-icons i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    img {
        width: 60px;
        height: 60px;
    }

    .footer p {
        font-size: 16px;
    }

    .footer .social-icons i {
        font-size: 20px;
    }
}