header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%; 
    margin: 10px auto; 
    padding: 10px 30px;

    background: rgba(0, 0, 0, 0.35);
    border-radius: 50px;
    backdrop-filter: blur(9.6px);
    -webkit-backdrop-filter: blur(9.6px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

iframe {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    border: none;
    z-index: -1;
    pointer-events: none;
}

.header-fingerprint {
    width: 50px;
    height: 50px;
    margin-right: 5px;
}

.header-name {
    font-size: 30px;
}

.header-nav a {
    margin-left: 20px;
}

.header-nav {
    margin-left: auto; 
    display: flex;
}

.header-logo {
    display: flex;
    align-items: center;
}


@media (max-width: 768px) {
    iframe {
        width: 300vw;
    }

    header {
        margin: 20px auto; 
        width: 97%;
    }

    .header-name {
        font-size: 20px;
    }

    .header-fingerprint{
        width: 35px;
        height: 35px;
    }

    .header-nav a {
        margin-left: 10px;
        font-size: 14px;
    }
}