body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    font-family: sans-serif;
    font-weight: 600;
    background: linear-gradient(to right, rgb(35, 155, 185), rgb(178, 221, 241), rgb(35, 155, 185))
}

.arabic-img{
    background: url('bg1.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: top center;
    width: 100%;
    height: 200px;
}

.bg-image {
    background: url('divine_waves_logo2.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 80%;
    height: 400px;
    margin: 0 auto;
}

.language-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: auto;
    display: flex;
    align-items: center;
}

li {
    color: black;
    background-color: transparent;
    padding: 5px 10px;
    margin: 0px 10px;
    box-sizing: border-box;
    border-radius: 10px;
    transition: color 0.5s ease, background-color 1s ease;
    border: 1px solid transparent;
    cursor: pointer;
}
a{
    text-decoration: none;
    color: black;
}

li:hover {
    color: #67920b;
    background-color: #e0f4f8;
    padding: 5px 10px;
    margin: 0px 10px;
    box-sizing: border-box;
    border-color: #a5ccdb;
}

@media screen and (max-width: 686px) {
    .active{
        display: none;
    }
}