
body{
margin:0;
font-family:Arial;
background:linear-gradient(180deg,#050b1e,#0b1d3a);
color:white;
}
.header{
padding:20px;
font-size:24px;
font-weight:bold;
}
.menu{
display:flex;
gap:40px;
justify-content:center;
margin-top:60px;
}
.item{
text-align:center;
cursor:pointer;
}
.item img{
width:120px;
border-radius:50%;
transition:.3s;
}
.item img:hover{
transform:scale(1.1);
box-shadow:0 0 20px #3fa9ff;
}
