/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Impact', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
    color:#fff;
}

footer {
    position: fixed;
    bottom: 25px;
    font-family: sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}
.coming-soon-container {
    margin-top: -100px;
    text-align: center;
}

.coming-soon-title {
    position: relative;
    text-align: left;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: .25rem;
    animation-duration: 1s;
    animation-name: come-sneak-1s;
    color: #fff;
}

.animate.coming-soon-title::before {
    transition: all 0.7s;
    transform: translateX(-10px);
    text-shadow: -10px 0px 0px rgba(255,255,255,0.5);
}

.mad::before {
    position: absolute;
    content: "MAD";
    opacity: 0.4;
    font-size: 1em;
    top: 0;
    z-index: -1;
    color: #fff;
}

.basement::before {
    position: absolute;
    content: "BASEMENT";
    opacity: 0.4;
    font-size: 1em;
    top: 0;
    z-index: -1;
    color: #fff;
}

.music::before {
    position: absolute;
    content: "MUSIC";
    opacity: 0.4;
    font-size: 1em;
    top: 0;
    z-index: -1;
    color: #fff;
}

@keyframes come-sneak-1s {
    0% { 
        transform: translateY(-50px);
        opacity: 0; 
    }
    100% { 
        transform: translateY(0);
        opacity: 1; 
    }
}