
	
	/* wildcard styling */
	* { 
		box-sizing: border-box; 
	} 
	/*url(../../images/thc-bg-image.jpg)*/
	/* padding for whole body */
	body {
	    max-width: 100%;
		padding: 10px;
		margin: auto;
		border: solid 1;
		border-color: #cccccc;
		font-family: arial;
		background: #f6f4ec;
        /*background-size: cover;*/
        /*background-position: bottom;*/
		text-align: center;
        animation: fadein 3s 1, zoomin 3s 1;
          }
          
	iframe {
	    width: 100%;
	    height: 60px;
	    border: 0;
	    border-color: #000000;

	}
         
        	/* styling body */
	/* styling body */
	.container { 
		max-width: 85%; 
		margin: auto;
		/*display: flex;*/
	}
	
	/*.container div { 
		width: 200px;
		height: 100%;
	}*/
	.container2 { 
        text-align: left;
		max-width: 800px; 
		margin: auto;
		/*display: flex;*/

		height: 5%;
		
	}
	
	/*nd column decoration */
	.row { 
		margin: 0 -18px; 
		padding: 8px; 
	} 
	
	.row > .column { 
		padding: 10px; 
	} 
	
	.column { 
		float: left; 
		width: 33%; 
	} 
	
	.row:after { 
		content: ""; 
		display: table; 
		clear: both; 
	} 
	
	/* content decoration */
	.content { 

		padding: 5px; 
		border: 0 solid gray; 
	}
	
		div.content:nth-of-type(1){ 

		padding: 10px; 
		border: 0 solid gray; 
	} 
	
        
    @keyframes fadein {
        0% {
            opacity: 0;
            }
        100% {
            opacity: 1;
        }
}
        @keyframes zoomin {
    0% {
        transform: scale(0.97,0.97);
    }
    100% {
        transform: scale(1,1);
    }
}
	
	button {
	    font-size: 1rem;
	    padding: 0 1.75rem;
	    border-radius: 0.75rem;
	    background: #703846;
	    color: #ba5971;
	    border: 1px solid;
	}
	
	button:hover {
	    background: #a25568;
	    color: #f5a2b7;
	    border: 2px solid;
	    box-shadow: 0 0 0 6px rgba(245, 162, 183 , .3);
	    filter: blur(0.9px);
	    transform: translate(0px, -3px);
	    cursor: pointer;
	}
	
	img {
	    border-radius: 0;

	    color: rgb(141, 141, 141);
	    /*color: rgba(141, 141, 141, 0.5);*/
	    filter: drop-shadow(0px 10px 3px rgba(00,00,00,0.3));
	    border: 0 solid;
	    cursor: pointer;
	}
	
	img:hover {
	    opacity: 0.6;
	}
	h1 {
	    font-family: times;
		text-align: center;
		padding: 10px;
		color: #000000;
		filter: drop-shadow(0px 3px 0px #cccccc);
	}
		h2 { 
		font-family: times;   
		text-align: center;
		padding: 10px;
		color: #000000;
		filter: drop-shadow(0px 3px 0px #cccccc);
		position: absolute;
        top: 25%;
        left: 39%;
	}
		h3 { 
		    
		text-align: center;
		padding: 0;
		color: #000000;
		filter: drop-shadow(0px 3px 0px #cccccc);
	}
	
	/* anchor tag decoration */
	a { 
		text-decoration: none; 
		color: #a56f00;
		filter: drop-shadow(0px 3px 1px #cccccc);
		text-align: center;
	} 
	
	a:hover { 
		color: #f4f100;
		transform: translate(0px, -3px);
	} 
	
	/* paragraph tga decoration */
	p { 

		text-align: center;
		font-size: 15px;
			padding: 5px;
			margin: auto;

	}

#myImg {
  border-radius: 0;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.5;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 40%;
  max-width: 700px;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}

	


	

	

	



	

