@import url('https://fonts.googleapis.com/css2?family=Manufacturing+Consent&display=swap');
*{
    font-family: "Manufacturing Consent", system-ui;
    padding: 0;
    margin: 0;

}
body{
    background-image: linear-gradient(to right, rgb(18, 18, 19) ,rgb(2, 31, 51));
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
} 
a{
    color: aliceblue;
    text-decoration: none;
}
.containar{
    width: 90%;
    height:92%;
    border-radius: 10px;
    background-image: 
    linear-gradient(to right ,rgba(26, 26, 27, 0.699),rgba(0, 119, 255, 0.116)),url(Gemini_Generated_Image_bmdw61bmdw61bmdw.png);

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.containar:hover{
    background-image: 
    linear-gradient(to right ,rgba(26, 26, 27, 0.699),transparent),url(Gemini_Generated_Image_bmdw61bmdw61bmdw.png);

}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
.logo{
    font-size: 30px;

}
ul{
    width: 60%;
    list-style: none;
    display: flex;
    justify-content:space-evenly ;

}
ul a{
    color: rgb(230, 230, 230);
    border-bottom: 2px solid transparent;
}

ul li a:hover{
    border-bottom-color: aliceblue;
    
}
.content{
    
    width: 50%;
    color: rgba(255, 255, 255, 0.836);
    margin-top: 50px;
    padding: 30px;
}
.content h2{
    font-size: 100px;
    text-transform: uppercase;
}
.content p{
    width: 350px;
    padding: 20px 0;
    letter-spacing: 3px;
}
.content button a{
    background-color: aliceblue;
    font-size: 30px;
    padding: 6px 10px;
    color:rgb(11, 36, 68);
    border-radius: 10px;
    border: 2px solid transparent;
}
.content  button:hover a{
    background-color: transparent;
    color: aliceblue;
    border-color: aliceblue;
}

/* ******************************************* */

.imagess{
    width: 90%;
    border: 100px;
    height:92%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}
.imagess img{
    margin: 10px;
    width: 200px;
    height: auto;
    border-radius: 10px;
}




/* ******************************************* */
 .vid{
    border-radius: 20px;
    width: 80%;
    height: auto;
    background-color:  rgba(100, 106, 114, 0.301);
    display: flex;
    justify-content: center;
    align-items: center;
 }
 .vid video{
    border-radius: 20px;
    width: 90%;
    margin: 40px;
 }
