#banner {
    height: 550px;
    position: relative;
    justify-content: center;
    background: linear-gradient(135deg, rgb(1, 23, 28),rgb(7, 17, 26)); 
}

.banner-container {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.banner-heading {
    margin: 0;
    color: rgb(255, 255, 255);
    font-family: 'Roboto', sans-serif;
    font-size: 10em;
    font-weight: 700;
    font-variant: small-caps;
    letter-spacing: 0.1em;
    z-index: 1;
}

.banner-links {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.banner-links a {
    margin: 0 10px;
    color: rgb(181, 181, 181);
    font-family: 'Roboto', sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    font-variant: small-caps;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.3s;
}

.banner-links a:hover {
    color: rgb(255, 255, 255);
}


#banner-item {
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@media screen and (max-width: 1300px) {
    #banner {
        height: 100lvh;
    }

    .banner-heading {
        font-size: 14vw;
    }

    .banner-links a {
        font-size: 2vw;
    }
}
