/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) 
{
    #nav-title
    {
        display: block;
    }
} 

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) 
{
    header .image
    {
        height: 80vh;
    }
   
    .bg-img
    {
        max-width: 100%;
        height: 1200px;
    } 

    #my-video
    {
        height: 5500px;
    }

    .album-gallery .grid, .singles-gallery .grid
    {
        grid-template-columns: repeat(4,1fr);
    }
} 

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) 
{
   
} 

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) 
{
    #main-content
    {
        left: 50%;
        transform: translateX(-50%);
    }

    section
    {
        width: 1200px;
    }
} 

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) 
{
   
}