* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background:
        radial-gradient(
            circle at top,
            #262626 0%,
            #101010 40%,
            #050505 100%
        );

    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

.background-video {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;

    z-index: -2;

    opacity: 1;
    transition: opacity 2s ease-in-out;
}

.video-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.25);

    z-index: -1;
}
.container {
    width: 100%;
    max-width: 520px;

    margin: auto;
    padding: 60px 20px 30px;

    text-align: center;
}


/* PROFILE */

.profile-image {
    width: 180px;
    height: 180px;

    margin: 0 auto 25px;

    border-radius: 50%;
    overflow: hidden;

    border: 2px solid rgba(255,255,255,0.5);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transform: scale(1.40) translateX(-15px);
}

.profile h1 {
    font-size: 32px;
    letter-spacing: 4px;
}

.profile p {
    margin-top: 10px;

    font-size: 13px;
    letter-spacing: 5px;

    color: #aaa;
}


/* LINKS */

.links {
    margin-top: 45px;

    display: flex;
    flex-direction: column;

    gap: 15px;
}

.link {
    display: block;

    padding: 20px;

    color: white;
    text-decoration: none;

    font-size: 14px;
    font-weight: bold;
    letter-spacing: 3px;

    border: 1px solid rgba(255,255,255,0.25);

    background: rgba(255,255,255,0.05);

    backdrop-filter: blur(8px);

    border-radius: 12px;

    transition: 0.25s;
}

.link:hover {
    background: white;
    color: black;

    transform: translateY(-3px);

    border-color: white;
}


/* FOOTER */

footer {
    margin-top: 60px;

    font-size: 11px;
    letter-spacing: 2px;

    color: #555;
}


/* MOBILE */

@media (max-width: 600px) {

    .container {
        padding-top: 40px;
    }

    .profile h1 {
        font-size: 26px;
    }

    .link {
        padding: 18px;
    }

}.baz-logo {
    width: 300px;
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link i {
    position: absolute;
    left: 22px;
    font-size: 24px;
}