html {height: 100%;
      font-size: 16px;
}

@viewport {
  width: device-width ;
  zoom: 1.0 ;
} 
	*, *:before, *:after{
		margin: 0;
		padding: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing:border-box;
         box-sizing: border-box;
}



body {
    background-color: #ffccdd;
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    color: rgba(0, 0, 0, 1);
    height: auto;
}



/* regular view */

.grid-container {
    display: grid;
    width: 98%;
    grid-template-columns:15rem 1fr 22rem;
    grid-template-rows:7rem 1fr;
    grid-template-areas: 
        "header header menu"
        "content content content"
}

a {
    color: rgba(0, 0, 0, 1);
    text-decoration: none;
}

.header {
    grid-area: header;
    color: rgba(255, 255, 255, 1);
    padding: 2rem 2rem 0rem 2rem;
    font-family: 'Archivo Black', sans-serif;
    margin-left: 3rem;
    font-weight: 300;
    width: 15rem;
}
.header h2{
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    font-family: 'Archivo Black', sans-serif;
}

.menu {
    grid-area: menu;
    position: relative;
    padding:2rem 2rem 0rem 2rem;
}

.menu ul {
  /*  display: block;
    list-style-type: none;  */
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    width: auto;
    list-style-type: none;  
    padding-right: 1rem;
    padding-top: 0.0rem;
    margin-bottom: 0rem;
}
.menu li{
    padding:0rem 1rem;
    font-size: 1.1rem;
   
}



.content{
    grid-area: content;
    padding-top: 0rem;
    width: 100%;
    display: block;
 
}

.themepic{
    margin-left: 2%;
    margin-top: 4rem;
    
}

.themepic img{
    object-fit: cover;
    object-position: 80%;
    width: 100%;
    height: 30rem
    
}



.contact a{
    color: white;
}

.contentw {
  position: relative;

  margin: auto;
  overflow: hidden;
    margin: 0.5rem;
}


.contentw .contentw-overlay {
  background: rgba(0,0,0,0.7);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.contentw:hover .contentw-overlay{
  opacity: 1;
}

.contentw-image{
 width:100%;
    height: 100%;
    object-fit: cover;
}

.contentw-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.contentw:hover .contentw-details{
  top: 50%;
  left: 50%;
  opacity: 1;
}

.contentw-details h3{
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

.contentw-details p{
  color: #fff;
  font-size: 0.8em;
}




/*big screen*/
@media screen and (min-width: 768px){
    
    .workgrid{
        display: flex;
        flex-wrap: wrap;
        margin: 3rem 3rem;;
        justify-content: center;
    }
   
    .contentw{
     max-width: 50vh;
        width: 90%;
    max-height: 40vh;
        height: 90%;
    margin-bottom: 1rem;
    }
    
    .worktext{
    margin: 3rem 5rem;
}

.worktext h5{
    font-size: 1.7rem;
    color: black;
    margin-bottom: 2rem;
    padding-left: 2rem;
    letter-spacing: 0.4rem;
    font-weight: 900;
    text-transform: uppercase;
    
}

.worktext p{
    margin-bottom: 2rem;
}

.worktext h6{
    font-size: 0.8rem;
    font-weight: 600;
    }
    
    .worktext a{
        text-decoration: underline;
    }
    
    .workimg{
        
        align-content: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .wcolumn  {
      
   
    }
    .workimg img{
        width: 70vh;
        margin: 2rem;
        object-fit: cover;
        height: 50vh;
        justify-content: center;
    }
    
    .workimg iframe{
        margin: 2rem;
        
    }
    
    .workimg p{
        margin: 2rem;
        
        font-weight: 400;
    }
    
    
    .workvid{
        width: 70vh;
        margin: 5rem;
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
    }
    
    .about{
    
    width: 80%;
    margin: 5rem 0rem 0rem 5rem;
}

.contact{
    width: 80%;
    margin: 6rem 13rem;
    font-size: 1.2rem;
    font-weight: 800;
    
}

.contact img{
    height: 60px;
    width: 60px;
}

.sounds {
    margin: 0rem 5rem;
}

    .book iframe{
        height: 300px;
        width: 480px;
    }
    
}
/*small view */

	@media screen and (max-width: 768px) {
        
        .grid-container {
            grid-template-columns: 1fr;
            grid-template-rows: 2.3rem 9rem 1fr ;
            grid-template-areas: 
               
                "menu"
                 "header"
                "content"
             
        }
        
        
        .menu {
    grid-area: menu;
    position: relative;
    padding-top: 0;
    
            
            
}

.menu ul {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    width: auto;
    list-style-type: none;  
    padding-right: 1rem;
    padding-top: 0.5rem;
    margin-bottom: 1rem;
}
.menu li{
    padding: 0rem 0rem;
    
  color: white;
}

	li a {
		display: block;
		font-size:1rem;
		text-decoration: none;
        color: rgba(0, 0, 0, 1);
        letter-spacing: 0.1rem;
          padding: 0.5rem;
        
}
li .active {
    font-weight: 900;
}

   
        

        .header {
            padding-top: 2rem;
            margin-left: 0rem;
        }
        .content {
          
        }
        
        .contentw{
            align-content: center;
            width: 80%;
            height: 30vh;
            max-height: 30vh;
            margin-left: 2rem;
            margin-bottom: 3rem;
        }
        
        .worktext{
            margin: 2.2rem;
           
            
           
}

.worktext h5{
    display: flex;
    font-size: 1.7rem;
    color: black;
    margin-bottom: 3rem;
    padding-left: 0rem;
    letter-spacing: 0.4rem;
    font-weight: 900;
    text-transform: uppercase;
justify-content: center;    
    
}

.worktext p{
    margin-bottom: 2rem;
}

.worktext h6{
    font-size: 0.8rem;
    font-weight: 600;
	}
        
        .workimg{
        
        align-content: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 80%;
    }
    
    .wcolumn {
        justify-content: center;
        
    }
    .workimg img{
        width: 100%;
        margin: 2rem;
        object-fit: cover;

    }
    
    .workimg iframe{
        width: 100%;
        margin: 2rem;
    }
    
    .workvid {
        align-content: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 80%;
    }
    
    .workimg iframe{
        width: 100%;
        margin: 0rem 2rem;
        object-fit: cover;
        height: 200px;
    }
    
    .workimg p{
         margin: 2.2rem;
    }
    
    .about{
    
    width: 90%;
    margin: 1rem 0rem 0rem 1rem;
}

.contact{
    width: 90%;
    margin: 3rem 0rem 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 800;    
}

.contact img{
    height: 50px;
    width: 50px;
}

.sounds {
    width: 80%;
    margin: 0rem 2rem;
}
        .book iframe {
            
        }
}