
	
	/* wildcard styling */
	* { 
		box-sizing: border-box; 
	} 
	/*url(../../images/thc-bg-image.jpg)*/
	/* padding for whole body */
	body { 
		padding: 15px;
		font-family: times;
		color: #ffffff;
		background: #4D4D4D;
        /*background-size: cover;*/
        background-position: bottom;
		text-align: center;
		max-width: 100%;
        max-height: 50%;
        /*align-items: center;
        justify-content: center;*/
		position: relative;
        top: 100px;
       /* left: 39%;*/
        /*margin-right: -61%;*/
        animation: fadein 3s 1, zoomin 3s 1;
        margin: 0;
          }


    
	iframe {
	    border: 0;
	    border-color: #000000;
	    align-items: center;
	    justify-content: center;
	}
         
        	/* styling body */
	.container {
	    text-align: center;
		width: 100%;
		/*display: flex;*/
		align-items: center;
        justify-content: center;
		margin: 10 auto;
		height: 5%
	}
	
	.container div { 
		width: 200px;
		height: 100%;

		
	}
	
        
    @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: 1rem;*/
	    color: rgb(141, 141, 141);
	    color: rgba(141, 141, 141, 0.5);
	    filter: drop-shadow(0px 20px 15px black);
	    border: 1px solid;
	    border-radius: .50rem;
	    
	    
	}
	
	img:hover {
	    transform: translate(0px, -3px);
	}
	h1 { 
		text-align: center;
		filter: drop-shadow(0px 5px 0px black);
		padding: 0;
		color: #f4a400;
		/*transform: scale(2);*/
		
	}
		h2 { 
		    
		text-align: center;
		padding: 0;
		color: #ffffff;
	}
		h3 { 
		    
		text-align: center;
		filter: drop-shadow(0px 3px 0px black);
		padding: 0;
		color: #ffffff;
	}
	
	/* anchor tag decoration */
	a { 
		text-decoration: none; 
		color: #f4a400;
		text-align: center;
	} 
	
	a:hover { 
		color: #f4f100;
		transform: translate(0px, -3px);
	} 
	
	/* paragraph tga decoration */
	p { 
		display: -webkit-box; 

		-webkit-line-clamp: 4;
		text-align: center;
		font-size: 17px;

	}
	
	table {
	    
	    align-content: center;
	    max-width: 80%;
	    transform: scale(1.5);
	}
	


	

	

	



	

