@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "IBM Plex Sans Arabic", sans-serif;
}
a {
    text-decoration: none;
}
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(150px);
    -webkit-backdrop-filter: blur(150px);
    z-index: 1;
}
.colorBox {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.colorBox .first,
.colorBox .sceend {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
}
.colorBox .first {
    background-color: #0e7c7b;
    top: -300px;
    right: -150px;
}
.colorBox .sceend {
    background-color: #d62246;
    bottom: -300px;
    left: -150px;
}
#changeLanguge {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 180px;
    height: 40px;
    border-radius: 9999px;
    border: none;
    outline: none;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 5px 10px;
    background-color: #fff;
    z-index: 100;
    cursor: pointer;
    font-size: 22px;
}
#changeLanguge p {
    margin-bottom: 0;
    font-weight: bold;
    font-family: "Poppins";
    font-size: 14px;
}
.content {
    width: 600px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    z-index: 100;
}
.content .image {
    width: 100%;
}
.content .image img {
    width: 100%;
}
.content #title {
    color: #000;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 40px;
    text-align: center;
}
.content #description {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}
.content #nextBtn {
    width: 200px;
    height: 40px;
    font-size: 18px;
    border-radius: 9999px;
    border: none;
    outline: none;
    color: #fff;
    padding: 5px 10px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.content #nextBtn i {
    font-size: 22px;
}
@media (max-width: 768px) {
    .content {
        width: 350px;
    }
    .colorBox .first,
    .colorBox .sceend {
        width: 300px;
        height: 300px;
    }
    .colorBox .first {
        top: -150px;
        right: -150px;
    }
    .colorBox .sceend {
        bottom: -150px;
        left: -150px;
    }
}
