.intro-screen {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Courier New', monospace;
}

.center-text {
    text-align: center;
}

.start-link {
    font-size: 2.5rem;
    color: white;
    text-decoration: none;
    letter-spacing: 3px;
    transition: 0.2s ease-in-out;
}

.start-link:hover {
    text-shadow: 0 0 15px #e600ff, 0 0 30px #00ffe7;
    transform: scale(1.05);
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', monospace;
    color: white; 
}

/*bg*/
.hub-bg {
    width: 100vw;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    position: relative;

    /* error*/
    background: url('https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExMGc4MW8xNzg4dnZncWI3cGd0eHcwaTF2YTJiODFmeTk2NHFxcDR2eiZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/h4fRaq5CW5Ll3FLPq0/giphy.gif') no-repeat center center fixed;
    background-size: cover;
}

/*center*/
.portal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.05);
    border: 1px solid #a700ff;
    padding: 10px 50px;
    text-align: center;
    color: magenta;
    letter-spacing: 4px;
    font-size: 2rem;
    text-shadow: 0 0 15px #ffffff;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    50% { box-shadow: 0 0 25px #ffffff; }
}

/*floating boxes*/
.node {
    position: absolute;
    padding: 12px 18px;
    background: rgba(255,255,255,0.07);
    border: 1px solid #fff;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.2s;
    animation: float 6s infinite alternate ease-in-out;
}

.node:hover {
    text-shadow: 0 0 10px #ff00ff;
    transform: scale(1.1);
}

/* box floating positions */
.hub-bg #gifs {
    top: 12%;
    left: 20%;
}
.hub-bg #tracklist {
    top: 30%;
    right: 18%;
}
.hub-bg #tour {
    bottom: 25%;
    left: 15%;
}
.hub-bg #gallery {
    bottom: 12%;
    right: 22%;
}
.hub-bg #musicvideo {
    top: 55%;
    left: 50%;
    transform: translateX(-50%);
}
/* animation*/
@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(30px); }
}



.content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 40vh;
}
.video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

