#vanta-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000000;
}

.navibar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(9, 10, 75, 0.397);
    padding: 15px 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 1000;
}

.navibar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    width: 100%; 
    justify-content: flex-start;
}

.navibar a {
    color: white;
    text-decoration: none;
    font-size: 23px;
    padding: 10px 15px;
    border-radius: 5px;
}

.navibar a:hover {
    background: #555;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Cal Sans', sans-serif;
    min-height: 80vh;
    margin: 0;
    padding: 20px;
    text-align: center;
    color: white;
    padding-top: 70px;
}

.headerAbout {
    text-align: start;   
}

.aboutmesq {
    margin-top: 80px;
    position: relative;
    z-index: 1;
    width: 80%;
    max-width: 800px;
    background: rgba(20, 20, 20, 0.85);
    padding: 25px;
    border-radius: 15px;
}

.aboutmesq img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid white; 
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 999;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 2px 0;
    transition: 0.4s;
}

.brand-text {
    display: none;
    position: fixed;
    top: 10px;
    right: 20px;
    color: white;
    font-size: 24px;
    font-family: "Cal Sans", sans-serif;
    font-weight: bold;
    z-index: 999;
}


@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navibar {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 250px;
        background: rgba(9, 10, 75, 0.95);
        flex-direction: column;
        padding: 60px 20px;
        transition: 0.3s;
        z-index: 1001;
    }

    .navibar.active {
        left: 0;
    }

    .navibar ul {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .navibar ul {
        gap: 15px;
        padding: 0 10px;
        min-width: max-content;
    }

    .navibar a {
        display: block;
        width: 100%;
        text-align: left;
        font-size: 23px;
        padding: 10px 15px;
        font-family: "Cal Sans", sans-serif;
    }

    .brand-text {
        display: block; 
    }
}

@media screen and (max-width: 480px) {
    .navibar {
        padding: 60px 15px;
    }

    .navibar ul {
        gap: 15px;
    }

    .navibar a {
        font-size: 20px;
        padding: 8px 12px;
    }

    .brand-text {
        display: block; 
    }
}