
/* Universal */
body
    {
        background-color: #390087;
        margin: 0;
        padding: 0;
    }





.topboxes
    {
        display: flex;
        padding: 0;
        flex-direction: row;
        height: 100%;
        align-items: center;
        justify-content: flex-start;
        background-color: black;
         margin: 10px;
        
    }

.actual-text
    {
        color: white;
        display: flex;
        justify-content: center;
    }

.actual-text:hover
    {
        color: red;
        text-decoration: none;
    }


/* index */

#layoutbox
    {
        width: 100%;
        max-width: 100vw;
        padding: 0;
        position: absolute;
        top: 10%;
    }






#front_page_pic img {
    width: 80vw;              
    height: auto;              
    max-width: 100%;
    object-fit: cover;      
}

#layoutbox img
    {
        max-width: 100%;
    }

/* pics */



.pic-holder
    {
        display: flex;
        flex-direction: row;
    }


.pics
    {
        display: flex;
        width: 50vw;
        justify-content: center;
        align-items: center;
        padding: 5%;
    }


.pics img
    {
        max-width: 100%;
        height: auto;
        display: block;
    }

/* upcoming-shows */

#upcoming_shows
    {
        color: white;
        font-size:  8vh;
        text-align: center;
    }

#div-to-make-room
    {
        height: 35px;
    }









@media (orientation: portrait)
    {

        #navbar
            {
                position: fixed;
                top: 0;
                height: 40px;
                width: 100%;
                margin: 0;
                background-color: black;
                display: flex;
                justify-content: flex-end;
                align-items: center;
                z-index: 999; 
            }

        #layoutbox
            {
                background-color: #390087;
                display: flex;
	            flex-direction: column;
                align-items: center;

            }

        #front_page_pic
            {
                display: flex;
                justify-content: center;   
                margin-top: 30vh;
                margin-bottom: 10px;
                margin-left: 10vw;
                margin-right: 10vw;      
                width: 100%;
                height: auto;
            }

        #social-media-links
            {
                background-color: #390087;
                display: flex;
	            flex-direction: row;
                object-fit: cover;
                width: 80%;
                height: auto;
               
                
            }
        
        .social-media-logos
        {
            width: 50%;
            aspect-ratio: 1 / 1;
            margin: 2vh 0;
        }
            
    }

@media (orientation: landscape)
    {

    #navbar
    {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 40px;
        
        margin: 0;
        background-color: black;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        z-index: 999;
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
    #layoutbox
        {
            background-color: #390087;
            display: flex;
	        flex-direction: row;
            width: 100%;
            height: auto;
        }

    #social-media-links
        {
            background-color: #390087;
            display: flex;
	        flex-direction: column;
            justify-content: space-evenly;
            width: 75%;
            object-fit: cover;
            margin-top: 60px;
            align-items: center;
        }
    .social-media-logos
        {
            width: 50%;
            aspect-ratio: 1 / 1;
            margin: 2vh 0;
        }
    
    .social-media-logos img
        {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }


    }

/* VideoBoxes*/

.video-containers
    {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

.video
    {
       display: flex;
       justify-content: center;
       margin-top: 5vh;
    }