* {
    border: none;
}

body {
    margin: 0;
    background-color: rgb(87, 87, 87);
    overflow: hidden;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container svg {
    width: 70%;
    z-index: 0;
    filter: 
        drop-shadow( 0px 0px 1px rgba(255, 199, 17, 0.1))
        drop-shadow( 0px 0px 5px rgba(122, 255, 113, 0.05))
        drop-shadow( 0px 0px 300px rgba(255, 255, 255, 0.5))
        drop-shadow( 0px 0px 600px rgb(15, 48, 4, .5));
}

.text {
    z-index: 2;
    text-align: center;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: -15%;
}

.text h1 {
    font-family:"Bebas Neue", serif;
    font-size: 6rem;
    font-weight: 100;
    margin: 0px;
    text-shadow: 0 0 50px rgba(0, 0, 0, 0.25);
}

.text h2 {
    font-family: "Bebas Neue", serif;
    font-size: 3.25rem;
    font-weight: 400;
    margin: -30px 0px;
    text-shadow: 0 0 50px rgba(0, 0, 0, 0.25);
}

/* for-phone-only */
@media (max-width: 599px) { 
    .text {
        top: -5%;
    }

    .container svg {
        width: 90%;
        margin: 0;
        filter: none;
    }

    .text h1 {
        margin: 0px;
        font-size: 4rem;
    }

    .text h2 {
        margin: -20px 0px;
        font-size: 2.2rem;
    }
 }

/* for-tablet-portrait-up */
@media (min-width: 600px) { 
    .container svg {
    }
 }

/* for-tablet-landscape-up */
@media (min-width: 900px) {  }

/* for-desktop-up */
@media (min-width: 1200px) {  }

/* for-big-desktop-up */
@media (min-width: 1800px) {  }