@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Kumbh+Sans:wght@100..900&family=Outfit:wght@100..900&display=swap');
*{
    margin: 0;
    padding: 0;
}
body{
    background-image: url(assets/technology/background-technology-desktop.jpg);
    color: #ffff;
  font-family: "Roboto Condensed", sans-serif;
}
header{
    display: flex;
    flex-direction: row;
    gap: 50px;
    justify-content: center;
    align-items: center;
}
hr{
    width: 600px;
    height: 0px;
    z-index: 200;
}
header img{
    width: 40px;
    height: 40px;
}
nav{
    display: flex;
    align-items: center;
    padding: 20px 40px;
    background-color:( 0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    width: 1000px;
    height: 40px;
    text-align: center;
    justify-content: end;
    gap: 60px;
    margin-top: 20px;
}
nav a{
    color: white;
    text-decoration: none;
}
nav a:hover{
    color: white;
}
nav a:after{
    content:'';
    bottom: 0;
    left: 30%;
    position: absolute;
    width:0;
    height: 2px;
    background: white;
    transition: width 2s;    
}
nav a:hover::after{
    width: 8%;
}
.des::after{
    content:'';
    bottom: 0;
    left: 48%;
    position: absolute;
    width:0;
    height: 2px;
    background: white;
    transition: width 1s;  
}
.des :hover:after{
    width: 120px;
}
.crew::after{
    content:'';
    bottom: 0;
    left: 67%;
    position: absolute;
    width:0;
    height: 2px;
    background: white;
    transition: width 1s;  
}
.crew:hover::after{
    width: 55px;
}
.tech::after{
    content:'';
    bottom: 0;
    left: 83%;
    position: absolute;
    width:0;
    height: 2px;
    background: white;
    transition: width 1s;  
}
.tech:hover::after{
    width: 100px;
}
.btn{
    display: flex;
    flex-direction: ror;
    gap: 50px;
}
.bt{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.btn a button{
    font-size: 20px;
    font-family: serif;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    border-color: white;
    background-color: #ffffff00;
    color: white;
}
.all{
    display: flex;
}
.launch{
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding: 140px;
}
.launch span{
    color: #9b9b9b;
}
.launch h3{
    font-size: 23px;
    display: flex;
    gap: 15px;
    margin-left: 15px;
}
.term{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.term h1{
    font-size: 50px;
    font-family: serif;
}
.potrait img{
    width: 500px;
    height: 500px;
    margin-top: 150px;
}
.bt a button:active{
    background-color: #ffff;
}