body{
    color: #eee;
    font-family: Balladi, sans-serif;
    margin: 0;
    background-color: #000;
    overflow: hidden;
}

::-webkit-scrollbar{
    width: 0;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
}

main .banner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3vmin;
    text-align: center;
    padding: 20px;
}
h1, h2, h3, h4, h5, h6{
    font-weight: 500;
    font-family: Balladi, sans-serif;
}
.banner button{
    all: unset;
    border: 1px solid #afaeae55;
    padding: 10px 20px;
    border-radius: 20px;
    background-image: linear-gradient(
        to bottom, #eee1, transparent, #eee1
    );
    cursor: pointer;
    transition: 0.5s;
    font-family: Balladi, sans-serif;
}
.banner button:hover{
    background-color: #f5b544;
    color: #040018;
    box-shadow: 0 0 15px #ffff;
    
}
h1{
    font-size: 10vmin;
    font-weight: bold;
    color: #f5b544;
    text-transform: uppercase;
    line-height: 1em;
    font-family: Balladi, sans-serif;
    padding: 5vmin;

}

.banner{
    position: relative;
}
.banner #dotsCanvas{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.banner h1,
.banner h4,
.banner button,
.banner .social-icons {
    position: relative;
    z-index: 1;
}

.banner h4{
    font-size: 3vmin;
    width: 80%;
    font-style: italic;
    color: #FFFFFF;

}

footer.footer { display:none !important; }




/*glow for lets connect page*/
.right {
    transition: text-shadow 0.3s ease, color 0.3s ease;
}

.right:hover {
    color: #f5b544; /*text color */
    text-shadow: 
        0 0 10px #FFFFFF;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #f5b544;
    color: #1d1b34;
    box-shadow: 0 0 15px #FFFFFF;
}

.social-icons a.instagram i {
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-icons a.instagram:hover i {
    background: none;
    -webkit-text-fill-color: #1d1b34;
}

.social-icons a.linkedin i {
    color: #0077b5;
}

.social-icons a.whatsapp i {
    color: #25D366;
}

.copyright-notice {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7em;
    color: #aaa;
    z-index: 1000;
}