*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(7, 6, 6);
    height: 80px;
    position: sticky;
    top: 0px;
    z-index: 99;
}
.logo img{
    height: 100px;
    width: 100px;
}
.ul ul {
    display: flex;
    justify-content: space-around;
    gap: 30px;

}
.ul ul li{
    list-style: none;
    /* border-bottom: 2px solid rgb(255, 10, 10); */

}
.ul ul li a{
    text-decoration: none;
    font-size: 1.2em;
    color: rgb(188, 188, 188);
    text-transform: capitalize;
    border-bottom: 3px solid rgb(255, 0, 0);
    padding-bottom: 3px;
    display: block;
    width: 0%;
    transition: all 0.5s linear;
}
.ul ul li a:hover{
    color: rgb(255, 255, 255);
    border-bottom: 3px solid rgb(255, 0, 0);
    width: 100%;

}
.login button{
    padding: 8px 15px;
    margin-right: 50px;
    font-size: 1em;
    font-weight: 600;
    color: aliceblue;
    background-color: red;
    border: none;
    border-radius: 5px;
}
section{
    background-image: url(./images/background.jpg);
    height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
}
.content{
    text-align: center;
    padding-top: 100px;
    border-radius: 5px;
}
.content h1{
    color: rgb(255, 255, 255);
    text-shadow: 5px 5px 5px red;
    text-transform: capitalize;
    font-weight: 900;
    transition: all 2s linear;
    animation: up 1s linear;
}
.content h1:hover{
    color: black;
     text-shadow: 3px 3px 3px rgb(234, 0, 255);
     cursor: pointer;
}
.content p{
    text-transform: capitalize;
    font-size: 1em;
    font-weight: 900;
    color: rgb(0, 0, 0);
    background-color: rgba(240, 248, 255, 0.142);
    animation: up 1s linear;
    display: inline;
    padding: 10px;
    backdrop-filter: blur(5px);
    border-radius: 5px;
}
.rectangle{
    width: 50%;
    height: 60px;
    background-color: rgba(250, 235, 215, 0.157);
    border-radius: 5px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;margin:10em auto 0;
    /* padding: 5px; */
    animation: move 1s linear;
    backdrop-filter: blur(10px);
}

.rectangle p {
    width: 27%;
    height: 50%;
    background-color: antiquewhite;
    padding: 5px;
}
.rectangle span{
    padding-left: 10px;
}
.rectangle{
    padding-left: 5px;
}
.rectangle button{
    padding: 10px 20px;
    background-color: red;
    color: aliceblue;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    transition: all 0.5s linear;
}
.rectangle button:hover{
    background-color: aliceblue;
    color: black;
    cursor: pointer;
}
.box{
    display: flex;
    justify-content: space-evenly;
    margin-top: 50px;
}
.bo{
    height: 120px;
    width: 300px;
    background-color: rgba(255, 255, 255, 0.09);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 10px 10px 10px black;
    transition: all 1s linear;
    backdrop-filter: blur(10px);
    /* display: flex; */
}
.bo p,h3{
    text-transform: capitalize;
    color: aliceblue;
}
.bo:hover{
    box-shadow: 5px 5px 10px rgb(255, 4, 4);
    transform: translateX(10px) translateY(-10px);
    cursor: pointer;
}
.bo img{
    height: 40px;
    transition: all 1.5s linear;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.333);
    padding: 5px;
    /* width: 40px;box-shadow: 5px 5px 10px rgb(255, 4, 4); */
    
}
.bo img:hover{
    /* display: block; */
    box-shadow: 2px 2px 10px rgb(238, 4, 255);
}




.footer {
    background-color: #000;
    color: #fff;
    padding: 50px 10%;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.footer-box {
    flex: 1;
    min-width: 220px;
}
.footer-box h3 {
    color: rgb(255, 0, 0);
    margin: 20px 0 10px;
}
.footer-box p {
    font-size: 14px;
    line-height: 1.6;
}
.footer-box ul {
    list-style: none;
}
.footer-box ul li {
    margin: 8px 0;
    cursor: pointer;
}
.footer-box ul li:hover {
    /* backdrop-filter: blur(10px);
     */
     color: red;
}
.subscribe-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.subscribe-box input {
    padding: 10px;
    border: none;
    border-radius: 5px;
}
.subscribe-box button {
    background-color: rgb(255, 0, 0);
    border: none;
    padding: 10px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s linear;
}
.subscribe-box button:hover {
    /* background-color: darkorange;
     */
     background-color: rgba(255, 255, 255, 0.193);
     backdrop-filter: blur(10px);
}
/* Bottom */
.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.social-icons {
    margin-bottom: 10px;
}

.social-icons i {
    background: rgb(255, 0, 0);
    color: white;
    padding: 10px 10px;
    height: 40px;
    width: 40px;
    font-size: 22px;
    border-radius: 50%;
    cursor: pointer;
}

.social-icons i:hover {
    background: rgb(255, 0, 0);
}








@keyframes move {
    from{
        opacity: 0;
        transform: translateY(100px) translateX(-100px);
    }
    to{
        opacity: 1;
        transform: translateX(0px) ;
    }

    
}
@keyframes up {
    from{
        transform: translateY(50px) scale(0);
        opacity: 0;
    }
    to{
        transform: translateY(0px) scale(1);
        opacity: 1;
    }
} 
