:root {
    --scroll: 0;
    --accent-color: rgb(86, 242, 75);
    --secondary-accent: rgb(255, 255, 255);
    --container-back: rgba(19, 19, 19, 0.5);
}

body {
    background-image: url(./assets/19201080-min.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position-x: center;
    background-color: rgb(19, 19, 19);
    background-attachment: fixed;
    font-family: 'Bord Demo', sans-serif;
}

a {
  text-decoration: none;
}

.spacer-50{
    height: 50px;
}

.spacer-25{
    height: 25px;
}


.gray {
    background-color: var(--container-back);
    border-radius: 8px;
    padding: 5px;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    width: 60%;
}

.container-header{
    display: block;
    width: 100%;
    padding: 10px;
}

.dj-img {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    padding: 10px;
}

h2 {
    font-size: 50px;
    color: var(--accent-color);
    text-shadow: 0 0 3px var(--accent-color);
    margin: 15px;
    text-align: center;
}

h3{
    color: var(--secondary-accent);
    text-shadow: 0 0 3px var(--accent-color);
    font-size: 35px;
    text-align: center;
    margin: auto;
}


h4 {
    font-size: 18px;
    color: var(--accent-color);
    text-shadow: 0 0 2px var(--accent-color);
    margin: 0;
    text-align: center;
}

.subcontainer{
    align-items: center;
    justify-content: center;
    z-index: 8;
    margin: auto;
    padding: 10px;
    flex: 1;
    max-width: 100%;
}

.container-sub{
    display: block;
    z-index: 8;
    margin: auto;
    padding: 10px;
    flex: 1;
}

.container-sub > .bus-img
{
    display: block;
    min-width: 250px;
    max-width: 500px;
    width: 100%;
    margin: 10px auto;
}

.subcontainer p {
    font-size: 20px;
    color: var(--accent-color);
    text-align: left;
}

.map{
    border-radius: 8px;
    flex: 1.75;
    max-width: 100%;
}

.grow { transition: all .2s ease-in-out; }
.grow:hover { transform: scale(1.1); }

.anchor{
    display:block;
    height:13vw; /* this is the height of your header */
    margin-top:-13vw; /* this is again negative value of the height of your header */
    visibility:hidden;
 }

/*phone*/
@media (min-width:320px) and (max-width:640px)  { 
    body {
        background-image: url(./assets/6401080-min.png);
    }


    .first{
        top: calc(400vw - 360 * var(--value));
    }
    
    .flex-container{
        width: 90%;
    }
    
    h2{
        font-size: 35px;
        text-shadow: 0 0 3px var(--accent-color);
    }

    h3{
        font-size: 25px;
        text-shadow: 0 0 3px var(--accent-color);
    }
}


@media (min-width:640px) and (max-width:912px)  { 
    body {
        background-image: url(./assets/9121080-min.png);
    }


    .first{
        top: calc(400vw - 360 * var(--value));
    }
    
    .flex-container{
        width: 90%;
    }
    
    h2{
        font-size: 35px;
        text-shadow: 0 0 3px var(--accent-color);
    }

    h3{
        font-size: 25px;
        text-shadow: 0 0 3px var(--accent-color);
    }
}

@media (min-width: 1921px) {
    body {
        background-size: cover;
    }

}