body{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 10px;
    position: relative;
}
.logo-name{
    font-size: 50px;
    font-weight: bold;
    color: rgb(224, 3, 3);
    position: absolute;
    bottom: 8px;
    left: 100px;
}
.nav-links{
    list-style: none;
    display: flex;
    max-width: 0;
    position: relative;
    left: -390px;
}
.nav-links li{
    margin-left: 80px;
    color: white;
    font-size: 18px;
}
.nav-links li a{
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    transition: background-color 1s;
}
.nav-links li a:hover {
    background-color: red;
    color: white;
    border-radius: 20px;
}
.english{
    display: inline-block;
}
.english img{
    margin: 5px;
}
.box{
    width: 1350px;
    height: 1px;
    background: red;
    border-radius: 1000px;
}
.hindi{
    display: inline-block;
}
.hindi img{
    margin: 5px;
}
.telugu{
    display: inline-block;
}
.telugu img{
    margin: 5px;
}

.tamil{
    display: inline-block;
}
.tamil img{
    margin: 5px;
}

.malayalam{
    display:inline-block;
}
.malayalam img{
    margin: 5px;
}
#box2{
    width: 10px;
    height: 100px;
    position: relative;
    bottom: 120px;
    border-radius: 10px;
    color: white;
    background-color: black;
    font-size: larger;
}
*{
    text-align: center;
}

