@keyframes animation {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.7);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes GG {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

div {
    font-size: xxx-large;
    font-family: "Tajawal", sans-serif;
    color: black;
    text-align: center;
    direction: rtl;

    background-color: dodgerblue;
    width: 350px;
    height: 150px;

    border-radius: 80px;
    box-shadow: 0 3px 50px black;

    margin: 160px auto;
    display: flex;
    align-items: center;
    justify-content: center;

    animation: animation 1.3s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

#btn1 {
    font-size: xx-large;
    font-family: "Tajawal", sans-serif;
    color: black;
    text-align: center;
    direction: rtl;

    background-color: dodgerblue;
    width: 200px;
    height: 100px;

    border-radius: 50px;
    box-shadow: 0 3px 35px black;

    margin: 60px auto;
    display: flex;
    align-items: center;
    justify-content: center;


    animation: animation 1.3s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

#btn1:hover {
    transform: scale(1.08);
}

#btn1:active {
    animation: GG 1.3s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}



body {
    overflow: hidden; /* يمنع ظهور السكرول نهائياً ويقص أي شي يخرج عن حدود الشاشة */
    transform: translateY(-30px);
}

a {
    text-decoration: none;
}