
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;
}

body{
background:linear-gradient(120deg,#0f2027,#203a43,#2c5364);
color:white;
}

/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
background:rgba(255,255,255,0.05);
backdrop-filter:blur(10px);
position:sticky;
top:0;
}

.logo{
font-size:24px;
font-weight:bold;
}

.menu{
display:flex;
 gap:10px; 
}

.menu a{
color:white;
text-decoration:none;
}

.menu-btn{
display:none;
font-size:28px;
cursor:pointer;
}

/* TITLE */

.title{
text-align:center;
margin-top:60px;
font-size:40px;
}

/* CONTENT */

.content{
width:90%;
margin:auto;
margin-top:40px;
background:rgba(255,255,255,0.08);
padding:30px;
border-radius:10px;
}

.job{
padding:15px;
border-bottom:1px solid rgba(255,255,255,0.1);
}

.job a{
color:#00e5ff;
text-decoration:none;
}



footer{
text-align:center;
padding:40px;
margin-top:80px;
background:rgba(0,0,0,0.3);
}

footer a{
color:#00e5ff;
text-decoration:none;
margin:0 10px;
}

/* MOBILE */

@media(max-width:900px){

.menu{
position:absolute;
top:70px;
left:0;
width:100%;
background:#0f2027;
flex-direction:column;
max-height:0;
overflow:hidden;
transition:.4s;
}

.menu.show{
max-height:600px;
}

.menu-btn{
display:block;
}

}