body {
    background-image: url("background.png");
    background-repeat: repeat;
    background-attachment: fixed;
}
.navbar{
    margin-right: 3px;
    margin-top: 0px;
    height :70px;
    width:100%;
    border :1px solid black;
    position :fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(25, 19, 63, 0.977);
    border-radius: 4px;
    box-shadow: 5px 5px 9px black;
    color:white

}
.Menu{
    padding:0 20px 0 20px ;
    display:inline-block;
    background-color: rgba(255, 255, 255, 0.53);
    border-radius: 10px;
    height:40px;
    margin:5px;
}
.Menu:hover{
    color:black;
}
#mainlogo{
    height:55px;
    width:180px;
    color: rgb(209, 21, 21);
    background-color:rgb(244, 244, 82);
    padding-left:50px;
    border-radius:3px 20px 3px 20px;
    display:inline-block;
}
.text{
    padding-top:73px;
}
.poster{
    text-align: center;
    height:490px;
    width:750px;
    padding-top: 100px;
    margin :auto;
    background-image: url("Dangal.jpg");
    background-size:cover;
    border-radius: 20px;
    border:2px solid rgb(42, 29, 13);
    box-shadow: 3px 3px 3px rgb(184, 112, 61);


}
.image{
    width:100%;
    background-color:rgba(193, 185, 97, 0.553);
}
.card{
    height:180px;
    width:180px;
    border :1.5px solid black;
    border-radius: 20px 2px 20px 2px ;
    display: inline-block;
    margin:35px 35px;
    box-shadow: 1px 1px 5px rgb(22, 1, 7);
    transition:2s box-shadow ease-in 0s;
    transition:2s text-decoration ease 0s;
    background-color: rgb(246, 246, 246,0.6);

}
.Cast{
    width:120px;
    height:40px;
    padding: 20px;
    font-family:  sans-serif bold;
    text-decoration: underline;
    font-size: 50px;
    text-align: center;
    margin:50px auto;
    transition: 0.1s font-size ease-in 0s;
}
.Cast:hover{
    font-size: 52px;
}
.card:hover{
    box-shadow: 5px 5px 10px rgb(22, 1, 7);
    text-decoration: underline;

}
.AllCast{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    height:750px;
    width:900px;
    border: 1px solid black;
    margin :10px auto;
    box-shadow: 3px 3px 3px rgb(22, 1, 7);
    background-color: rgba(255, 255, 255, 0.3);
}
img{
    width: 70%;
    height:70%;
    margin: 0px 25px;

}

.About{
    text-align: center;
    text-decoration: underline;
    transition: 0.3s font-size ease-in 0s;
}
.About:hover{
    font-size:18px;
}
.Abouttext{
    margin-top: 50px;;
    font-family:'Times New Roman', Times, serif;
    font-size: 20px;
}
.Famousquote{
    background-color: rgb(235, 235, 235);
    font-style: italic;
    font-size: 20px;
    color: rgb(212, 9, 70);
}
.wrestling{

    height :720px;
    width:800px;
    margin :0px auto;
    padding-left: 30px;
    padding-right: 30px;
    background-color: rgba(239, 240, 253, 0.7);
    border:1px solid black;
}
form{
    font-size: 25px;;
    height :450px;
    width :600px;
    margin :20px auto;
    border:1px solid black;
    box-shadow: 3px 3px 10px black;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding-left: 25px;
    background-color: aliceblue;
}
.rating {
    align-self: center;
    display: inline-block;
    font-size: 0;
}

.rating input {
    display: none;
}

.rating label {
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
}

.rating input:checked ~ label {
    color: #ffcc00; /* Change this color to represent the selected stars */
}
.button{
    align-self: center;
}
.redbutton button{
    height:50px;
    width:200px;
    background-color: rgb(152, 20, 60);
    color: white;
    border-radius: 9px;
}
.redbutton {
    align-self: center;
}
.rev{
    text-align: center;
    text-decoration: underline;
    border-radius: 10px;
    border :0.5px solid black;
    width :70%;
    margin:50px auto;
}
.footer{
    text-align: center;
    font-size: 40px;
}
.wrapper .icon{
    position: relative;
    background-color: #ffffff;
    border-radius: 50%;
    margin: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 22px;
    display: inline-block;
    align-items: center;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: #333;
    text-decoration: none;
}
.wrapper .tooltip {
    position: absolute;
    top: 0;
    line-height: 1.5;
    font-size: 14px;
    background-color: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background-color: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
    background-color: #3b5999;
    color: #ffffff;
}
.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
    background-color: #46c1f6;
    color: #ffffff;
}
.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
    background-color: #e1306c;
    color: #ffffff;
}
.wrapper .github:hover,
wrapper .github:hover .tooltip,
.wrapper .github:hover .tooltip::before {
background-color: #333333;
color: #ffffff;
}
.wrapper .youtube:hover,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before {
    background-color: #de463b;
    color: #ffffff7b;
}

.m{
    display:flex;
    height:20px;
    width:20px;
    background-color: #ebebeb73;
    margin-right: 0px;
    flex-direction: column;
    justify-content:space-evenly;
}
.lines{
    height:4px;
    width:20px;
    background-color: #0e0b0b;
    margin :0px auto;
}
.menubutton{
    background-color: rgba(240, 248, 255, 0.386);
    margin-right:25px;
}
@media (min-width:750px){
    .menubutton{
        margin-top:-1000px;
        margin-right:-350px
    }
    .AllMenu{
        margin-top:auto;

    }
}
@media (max-width:750px){
    .menubutton{
        margin-botton: 5px;
    }
    .AllMenu{
        margin-top:-1000px;
        margin-left:-9000px;
        align-self:flex-end;
    }
    .form{
        margin:0px 100px;
    }
    .rev {
        margin:0px 200px;
    }

}
a{
    display: inline-block;
}
