body { 
    margin: 0%; 
    background-color: #eaeaea;
    background-image: url('000015.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    overflow: hidden;
}

.content {
    position: relative;
    z-index: 1; 
}

body::after {
    content: "";
    background-image: url('000015.jpg'); 
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1; 
    opacity: 1; 
    transform: scale(1.1); 
}
  
canvas { 
    width: 100%; 
    height: 100%;
}

.Text {
    font-family: 'Jost';
    font-weight: 400; 
    color: #eaeaea;
    text-shadow: 0px 0px black 3em;
    user-select: none;
}

.grid-container {
    display: grid;
    grid-template-columns: 4vw 1fr auto 4vw;
    grid-template-rows: 1vh 8vh 4px 4vh auto 6vh 4vh;
    gap: 10px;
    padding: 10px;
    width: 100vw;
    height: 100vh;
}

.title {
    font-size: 6vh;
}

@keyframes gone-live-bar {
    0% {width: 0%; opacity: 0%;} 
    30% {width: 0%; opacity: 100%;}
    90% {width: 100%; opacity: 100%;}
    100% {width: 100%; opacity: 0%;}
}

.gone-live {
    width: 100%;
    height: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #eaeaea;
    animation: gone-live-bar 4s ease-in-out 0ms infinite;
}

#rotating-text {
    font-size: 3vh;
    text-align: left;
    margin-top: 20px;
    opacity: 0; 
    transition: opacity 0.5s ease-in-out; 
}

.strapline {
    font-size: 3vh;
}

.insta-glyph {
    width: 3vh;
    height: 3vh;
    translate: 0px 0.75vh;
}

.copyright {
    font-size: 3vh;
}
