body{
    background-color: #00294b;
    padding: 0;
    margin: 0;
}
.header{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    height: 70px;
}
.header .content{
    display: flex;
    width: 700px;
    background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    backdrop-filter: blur(6px);
    height: 100%;
    border-style: solid;
    border-width: 0px;
    border-radius: 100px;
    box-shadow: 0 6px 30px rgba(2,6,23,0.5);
}
.header .content .icon{
    display:flex;
    height: 100%;
    width: 90px;
    align-items: center;
    justify-content: center;
}
.header .content .icon img {
    width:50px;
    height:50px;
    flex-shrink:0;
    border-style: solid;
    border-width: 0px;
    border-radius: 100px;
}
.header .content .navbar{
    display: flex;
    height: 100%;
    width: 60%;
    justify-content: center;
    align-items: center;
}
.header .content .navbar a{
    all: unset;
    margin-left: 30px;
    font-size: 20px;
    color: #ffffff;
    transition: all 0.4s ease;
}
.header .content .navbar a:hover {
    color: #020202;
    transition: all 0.4s ease;
}