@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@100..900&display=swap');

html {
    scroll-behavior: smooth;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: "Noto Sans Arabic", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:"wdth" 100;
}

main {
    width: 100%;
    min-height: 100dvh;
    background-color: rgb(204, 204, 204);
    display: flex;
    justify-content: center;
}

section {
    direction: rtl;
    padding: 10px;
    width: 600px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
a {
    width: 100%;
    text-decoration: none;
}
button {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 5px;
    background-color: black;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 17px;
}
img {
    width: 100%;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    background-color: rgb(173, 173, 173);
    padding: 20px;
    border-radius: 5px;
}
.price {
    width: 100%;
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    direction: ltr;
}

input, select{
    width: 100%;
    height: 50px;
    border-radius: 5px;
    padding-right: 10px;
    border: none;
    font-weight: bold;
    font-size: 17px;
}

.vibration {
    animation: shake 1.5s infinite;
}
@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.thankyoumsg {
    position: 	fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: white;
    display : none;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: center;
    text-align: center;
    color: black;      
}
